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

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

#nav a {
	display: block;
	text-decoration: none;
}

#nav a:hover {
	color: #CC0000;
	background-color: #FFFF33;
}

#nav li { /* all list items */
	float: left;
	width: 120px;
	border-bottom: 1px solid #FFCC00;
}

#nav li a {
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	color: #273A3F;
	padding: 5px;
	background-color: #FFFF66;
}

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

#nav li ul a {
	font-size: 11px;
	font-weight: normal;
	text-align: left;
	color: #333333;
	padding: 5px;
	background-color: #FFFF99;
}

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

.rightline {
	border-right: 1px solid #E0AB0C;
}



