#nav, #nav ul { 
	/* all lists */
	padding: 0;	
	margin: 0;	
	list-style: none;
	height:25px;
	background-color:#e26d00;
	border-top: 1px solid #e26d00;
}
#nav a {

	text-align:center;
	display: block;
	padding:4px 10px;
	color:#e5e5e5; 
	text-decoration:none;
	font-weight:bold;
	background-color: #e26d00;
	border-right: 1px solid #ccc;
}
#nav li a:hover {
	background-color: #d5a93e;
	color:#000;
}
#nav li { 
	/* all list items */
	float: left;
	/*width needed or else Opera goes nuts */
}
#nav li ul { 
	/* second-level lists */
	position: absolute;	
	display: block;
	width: 85px; 
	left: -999em; 
	/* using left instead of display to hide menus because display: none isn't read by screen readers */
	background: #e26d00; 
	border-top:1px solid #e26d00; 
	border-bottom:1px solid #ccc; 
	text-align: left;
}
#nav li ul a{
	color:#e5e5e5; 
	background:#e26d00;  
	width: 120px;
	text-align: left;
	border-right: 1px solid #e26d00;
	border-left: 1px solid #e26d00;
	border-top: 1px solid #ccc;
	border-bottom: 0px solid #e26d00; 
}
#nav li ul a:hover {
	background:#d5a93e;
	width: 120px;
	color:#000;
}
#nav li ul ul { 
	/* third-and-above-level lists */
	margin: -1em 0 0 10em;
}
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { 
	/* lists nested under hovered list items */
	left: auto;
}
