@charset "UTF-8";
/* CSS Document */

#nav {
float: left;
	}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	color: #666666;
	text-decoration: none;
}

#nav li { /* all list items */
	float: left;
	color: #666666;
}

#nav li:hover, #nav li.hover {
    position: static;
	color: #666666;
}


#nav li ul { /* second-level lists */
	position: absolute;
	display: block;
	background-color:white;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-left: -25px;
	width: 100px;
}

#nav li ul li { /* second-level list items*/
	padding: 4px;
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	color:#666666;
	margin-top:3px;
	display: block;
	width: 92px;
	background-color:#FFFFFF;
}


#nav li ul li a{ /* second-level list items*/
	color:#666666;
}

#nav li ul li a:hover{ /* second-level list items*/
	color:#0c67af;
}


#nav li ul ul { /* third-and-above-level lists */
/*	margin: -1em 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;
}


#secondaryNav {text-align: right;}