#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	z-index: 100;
	list-style: none;
	line-height: 20px;    }
#nav a {
	text-decoration: none;   
	color: #000;
	font-size: 0.9em; 
	font-weight: normal;		
} 
#nav li { /* all list items */
 	/* width needed or else Opera goes nuts */ 
	position: relative;   
    float: left; 
	line-height: 1%; 	
}


#nav li ul { /* second-level lists */
	position: absolute;
	top: 64px;
	left: 0px;
	width: 170px;	
	z-index: 99999999; 
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */    }	

#nav li ul li{	
	padding: 8px 15px;
	width: 160px;
	margin: 0px;
	background-color: #fff;
	position: relative; 
	z-index: 1000; 
	border-left: 1px solid #c8c8c8;
	border-right: 1px solid #c8c8c8;
	border-bottom: 1px solid #c8c8c8;
}		

#nav li ul li:hover {
	background-color: #eee;
	/*font-weight: bold;  */
}

#nav li:hover ul, #nav li.sfHover ul { /* lists nested under hovered list items */
	left: 0px;   }

#nav li.hide ul{
	position: absolute;
	left: -999em; }

#nav li.sfHover ul li {
	left: 0px; 
	margin: 0px;
	z-index: 1000; 
	line-height: 20px;   }
/* sfFocus Styles */
.sfFocus {
	background: blue;
	color: #fff;    }
/* sfActive Styles */
.sfActive {
	background: lime;
	color: #fff;    }
/* sfTarget Styles */
.sfTarget {
	background: black;
	color: #fff;    }

