/* CSS Document */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font-family:Arial, Helvetica, sans-serif;
	font-size:8pt;
}

#nav li { /* all list items */
	position: relative;
	float: left;
	margin-bottom: -1px;
	clear:left;
	background:#feb;
	border:solid 1px #ddd;
}

#nav li.current {
	color:#000;
	background:#ffc82d;
}


#nav li ul { /* second-level lists */
	position: absolute;
	z-index:100;
	left: -999em;
	margin-left: 167px;
	margin-top: -3.5em;
	background:#feb;
}

#nav li li ul { /* third-level lists */
	position: absolute;
	z-index:100;
	left: -999em;
	margin-left: 188px;
	margin-top: -2.45em;
	background:#feb;
}


#nav li ul ul { /* third-and-above-level lists */
	left: -999em;
}

#nav li a {
	width: 147px;
	padding:3px 10px;
	display: block;
	color: #001759;
	font-weight: bold;
	text-decoration: none;
}

#nav li a:hover {
	background:#ffc82d;
}

#nav li li a {
	width:168px;
	text-align:left;
}

#nav li li a:hover {
	color:#000;
	background:#ffc82d;
}
	

#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;
}

