/* CSS Document */

#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 26px;
	z-index: 100;
	font-weight: bold;
}

#nav { /* all lists */
	padding-top: 4px;
	padding-bottom: 4px;
	margin: 0;
	list-style: none;
	line-height: 26px;
	z-index: 100;
	font-weight: bold;
}

#nav a {
	display: block;
	width: 10em;
	text-decoration: none;
	color: #022248;
	text-indent: 0px;
	border-right: 1px solid #aaaaaa;
	text-align:center;
}

#nav a:hover {
	background: #004b8e;
	color: #FFF;
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #e6edf5;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -21px 0 0 10em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
