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

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	border-top: 1px solid #666;
	background-color:#666;
}

#nav a {
	display: block;
	width: 117px;
	padding:3px 0 3px 0;
	height:12px;
	text-align:center;
}

#nav a:hover {
	color:#666;
	background-color:#fff;
}

#nav li { /* all list items */
	float: left;
	text-align:left;
	width: 118px; /* width needed or else Opera goes nuts */
}

#nav li ul {
	text-align:left;
}

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

#nav li ul li a {
	width: 169px;
	border:1px solid #666;
	border-width:0 1px 1px 1px;
}

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