#nav {
	background-color: #2f3f63;
	height: 20px;
	position: relative;
	z-index: 1000;
}

#nav a {
	height: 15px;
	background: #2f3f63;
	color: white;
	font-size: 12px;
	text-decoration: none;
	display: block;
	border-right: 1px solid white;
	border-bottom: 1px solid white;
	width: 120px;
	padding-bottom: 0px;
	padding-top: 5px;
	padding-left: 10px;
	padding-right: 0px;
}

#nav li ul li a {
	background: #fe9900;
}

#nav li ul li ul li a {
	background: #ffcc33;
}

#nav a.over:hover {
	background-color: #91a1be;
}

#nav ul a, #nav ul a.noover:hover {
	background-color: #2f3f63;
}

#nav li a:hover {
	color: #ff9900;
}

#nav ul a:hover {
	background-color: #2f3f63;
	color: White;
}

.none {
	background-color: #708090;
	cursor: default;
}

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

#nav a {
	display: block;
}

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

#nav li ul { /* second-level lists */
	position: absolute;
    width: 121px;
	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: -21px 0 0 131px;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

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

