@charset "UTF-8";
/* CSS Document */
body {
	font: normal 11px verdana;
	}
ul#nav {
	margin: 0;
	list-style: none;
	width: 670px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 150;
	}
	
ul#nav li  {
	position: relative;
	}
	
ul#nav li ul  {
	position: absolute;
	left: 0px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul#nav li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #ccc;
	margin-right: auto;
	margin-left: auto;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul#nav li { float: left; height: 1%; }
* html ul#nav li a { height: 1%; }
/* End */

ul#nav li a:hover { color: #E2144A; background: #f9f9f9; } /* Hover Styles */
		
ul#nav li ul li a { padding: 2px 5px; } /* Sub Menu Styles */

/*******************************************************************************

I put this in to get ride of sub menus that had bullets. fSM:Evan

 *******************************************************************************/		
ul#nav li ul li {
	list-style-type:none
}
<!-- End -->

ul#nav li:hover ul, ul#nav li.over ul { display: block; } /* The magic */

ul#nav li.liMenu {
  float: left;
  position: relative;
  width: 10em;
  }
  
ul#nav  li ul {
  display: none;
  position: absolute; 
  top: 1em;
  left: 0;
  }
  
ul#nav  li > ul {
	top: auto;
	left: auto;
	}

ul#nav li:hover ul, ul#nav li.over ul{ display: block; }


