@charset "utf-8";

#menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.5;
	float: right;
	font-weight: bold;
}

#menu a {
	display: block;
	width: auto;
	padding: 3px 15px;
	text-decoration: none;
	color: #fff;
}

#menu a:hover {
	text-decoration: none;
	color: #4d5daa;
}

#menu li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
}

#menu li ul { /* second-level lists */
	position: absolute;
	background: #b0cce7;
	width: 200px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	clear: left;
	font-weight: bold;
	padding-bottom: 10px;
	border-left: solid 1px #687563;
	border-right: solid 1px #687563;
	border-bottom: solid 1px #687563;
}

#menu li ul li {
	width: 100%;
}

#menu li ul li a {
	width: 170px;
	padding: 10px 15px 0 15px;
	background: #b0cce7;
}


#menu li:hover ul, #menu li li:hover ul, #menu li.sfhover ul, #menu li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
