@charset "utf-8";
#nav, #nav ul { /* all lists */
	list-style: none;
	position: absolute;
	font-family: Georgia, Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	font-style: normal;
	line-height: normal;
	font-weight: 300;
	font-variant: normal;
	text-transform: lowercase;
	text-decoration: none;
	bottom: 13px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 0px;
}
#nav a {
	display: block;
	width: 150px;
	text-align: left;
	text-decoration: none;
	height: 20px;
	vertical-align: text-bottom;
	background: #000000;
	color: #FFFFFF;
}
#nav a:link, #nav a:visited {
	text-decoration: none;
}
#nav a:hover {
	color: #6699cc;
	text-decoration: none;
	background: #000000;
}
#nav li { /* all list items */
	float: left;
	width: 150px;
}
#nav li ul { /*second-level lists */
	position: absolute;
	width: 150px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by some screen readers */
	top: 20px;
	white-space: nowrap;
	padding: 0px;
	color: #FFFF00;
}
#nav li ul a:link, #nav li ul a:visited    { /* drop down list */
	color: #999999;
	background: #000000;
	text-decoration: none;
} 
#nav li ul a:hover, #nav li ul a:active     { /* drop down list on hover */
	color: #6699cc;
	background: #000000;
	text-decoration: none;
}

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