#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	}

#nav {
	height: 30px;
	margin-left: 16px;
	padding-left: 1px;
	background: url('/image/bg-navitem.gif') no-repeat left center;
	}

#nav a {
	display: block;
	line-height: 30px;
	width: 78px;
	text-align: center;
	color: #9c9b9a;
	font-size: 130%;
	font-family: "News Gothic MT", Arial, Geneva, Helvetica, Verdana, sans-serif;
	font-weight: normal;
}
#nav a:hover {
	color: #505050;
	text-decoration: none;
	}

#nav li.active a,
#nav li.active a:hover {
	color: #9c9b9a;
	background: url('/image/bg-nav-active.gif') repeat-x;
	}

#nav li { /* all list items */
	float: left;
	height: 30px;
	line-height: 30px;
	width: 79px; /* width needed or else Opera goes nuts */
	background: url('/image/bg-navitem.gif') no-repeat right center;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: lightblue;
	width: 20em;
	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: -1em 0 0 20em;
}

#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 {
	/* left: auto; */
}
