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

#nav {
	height:36px;
	}

#nav a {
	display: block;
	width: 88px;
	border-right:1px solid #ffffff;
	height:26px;
	line-height:26px;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	font-size: 11px;
}
#nav ul a {
	text-transform:none;
	width:200px;
	height:2em;
	text-align:left;
	border:0;
	padding-left:1em;
	}
#nav ul a:hover {
	background:none;
	text-decoration:underline;
	color:#000;
	}

#nav li { /* all list items */
	float: left;
	width: 89px; /* width needed or else Opera goes nuts */
	height:36px;
}
#nav li li {
	clear:both;
	display:block;
	height:auto;
	width:auto;
	}

#nav li.active {
	background:url('/image/nav-arrow.gif') center 31px no-repeat;
	}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 200px;
	padding-bottom:5px;
	z-index:999;
	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 { /* lists nested under hovered list items */
	left: auto;
}

