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

a:hover {
	text-decoration: none;
	color:#999999
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 10em;
	font-weight:normal;
	font-family: "Gill Sans MT";
	font-size: 16px;
	color:#000;
	text-align: center;
	text-decoration: none;
}

#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
	padding: 0.2em 10px;
}

#nav li a:hover {
	color:#666666
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: orange;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background:url(../images/ddbg3.png) bottom left;
	padding: 1em 0 1em 0;
	}

#nav li li a:hover {
	color:#666666
}

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



