
#nav, #nav ul { /* all lists */
	padding: 2px;
	margin: 0px;
	list-style: none;
	line-height: 16px;
	color:0db8c5;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px; 
	font-weight:bold;
	
}

#nav a {
	display: block;
	padding-left:2px;
	padding-right:2px;
	text-decoration:none;
	
	
}



#nav li { /* all list items */
	float: left;
	
	/* min-width: 120px; /* width needed or else Opera goes nuts */
	
	
}



#nav li ul { /* second-level lists */
	position: absolute;
	background: white;
	
	width: 140px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	border:1px solid #0db8c5;
	/*border-right: 2px solid #0db8c5;
	border-bottom: 2px solid #0db8c5;
	*/
}



#content {
	clear: left;
	color: #ccc;
}




