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

#nav a {
	display: block;
	width: 99px;
	color: #2D5A6D;
	text-decoration: none;
	text-transform:	uppercase;
	font-size: 10px;
	font-weight: bold;
	font-family: arial, helvetica, sans-serif;
}

#nav a:visited {
	color: #2D5A6D;
}

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

#nav li ul { /* second-level lists */
	position: absolute;
	margin-left:-1px;
	margin-top: 7px;
	border-top: 1px solid #FE9117;
	/*background: orange; */
	width: 99px;
	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 99px;
}

#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;
}

