ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 160px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}
	
#nav ul {
	width:160px;
}


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

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #777; /* IE6 Bug */
	padding: 5px;
	background-color: #DEE3E6;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #ccc;
	border-left-color: #DBE4E7;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	width:149px;
	}

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

ul li a:hover {
	color: #D88C00;
	background: #f9f9f9;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #DBE4E7;
} /* Hover Styles */
		
li ul li a { padding: 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */
