@charset "utf-8";
/* CSS Document */

#nav, #nav ul { /* all lists */
	font-family:  Verdana, 'lucida grande', tahoma, verdana, sans-serif;
	font-size: 11px;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	text-transform: uppercase;
	display:block;
	z-index: 99;
}
 
#nav a {
	display: block;
	text-decoration: none;
	text-align: left;
	color: #666;
	padding: 6px 15px 4px 5px;
}
 
#nav li { /* all list items */
	float: left;
}
#nav li a:hover {
	background-color: #D5EDDD;
}
 
#nav li ul { /* second-level lists */
	position: absolute;
	background: white;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	display: block;
	width: 180px;
	}
	#nav li ul.upper {
	border: none !important;
	}
#nav ul ul li {
	padding 5px;
}
#nav ul ul.lower {
	border-left: 1px solid gray;
	border-right: 1px solid gray;
	border-bottom: 1px solid gray;
	border-top: 1px dotted gray;
	}
#nav li ul a:hover {
	background: #58956D;
}
#nav li ul a {
	width: 160px;
	padding-top: 10px;
	padding-bottom: 10px;
}
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
 
#content {
	clear: left;
	color: #ccc;
}
#nav ul ul a:first-child {
	visibilty: hidden;
}
