#nav {
	margin: 0;
	padding: 0px;
	list-style: none;
	/*width: 150px;*/ /* Width of Menu Items */

	}

#nav li {
	float: left;
	position: relative;
	list-style: none;
padding-right: 10px;
padding-left: 10px;
border-right-width: none;
border-right-style: none;
border-right-color: #3b88cb;
	}
	

#nav li ul {
position: absolute;
left: -38px; /* Set 1px less than menu width */
top: 15px;
display: none;

}

/* Styles for Menu Items */
#nav li a {
	display: block;
	text-decoration: none;
	color: #CE600E;
font-family: Verdana, Arial, Helvetica;
font-size: 10px;
font-style: normal;
font-weight: bold;
font-variant: normal;
text-decoration: none;
	background: none; /* IE6 Bug */
	border-bottom: 0;
	}

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

/* End */

#nav li ul li { float: none; padding-top:0px;	margin:0px; padding-bottom:0px;	border-right-style: none;

}

#nav li a:hover { color: #CE600E;  } /* Hover Styles */
		
#nav li ul li a { 
	color: white; 
	font-size: 10px;
	
	
width: 120px;
background-color: #CE600E;
padding: 4px 4px 4px 4px;
border: thin solid white;
border-top: 0;
} /* Sub Menu Styles */	
#nav li ul li a:hover { 
	color: #CE600E; 
	font-size: 10px;
	
	
width: 120px;
background-color: white;
padding: 4px 4px 4px 4px;
border: thin solid white;
border-top: 0;
} /* Sub Menu Styles */
		
#nav li:hover ul, #nav li.over ul { display: block; } /* The magic */