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

body {
	font-family: arial, helvetica, serif;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav li ul a:link, #nav li ul a:visited, #nav li ul a:active {
	display: block;
	width: 110px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #D9E4DC;
	text-decoration: none;
	text-align: left;
	line-height: 18px;
	padding-left: 20px;
}

#nav li ul a:hover {
	display: block;
	width: 110px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #D9E4DC;
	text-decoration: none;
	text-align: left;
	line-height: 18px;
	background-color:#667583;
	padding-left: 20px;
}


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



#nav li ul  { /* second-level lists */
	position: absolute;
	width: 90px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #4c5f70;
	padding-left: 0px;
	height: auto;
	clear: left;
}



#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	top: 173px;
}

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