body, p, li {
	font: normal 11px verdana;
	}

.nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #999;
	background-color: #f4f4f4;
	font: normal 10px verdana;
	}

.nav ul li {
	position: relative;
	}
	
.nav li ul {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
.nav ul li a {
	display: block;
	text-decoration: none;
	color: #006;
	background: #f4f4f4; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #999;
	border-bottom: 0;
	margin-bottom: -10; 
	}

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

.nav ul li a:hover { color: #006; background: #ffff99; } /* Hover Styles */
		
.nav li ul li a { padding: 5px 5px; } /* Sub Menu Styles */
		
.nav li:hover ul, .nav li.over ul { display: block; } /* The magic */


