#navi, #navi ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;	
	width: 745px; 
}

#navi a {
	display: block;
	text-decoration: none;
	color:black; 
}

#navi a:hover {
	color:#173c59; 
}


#navi li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	list-style: none;
}

#navi li ul { /* second-level lists */
	position: absolute;
	background: white;
	width: 11em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	list-style: none;
	padding: 1em 1em 1em 1em;
	border: 1px solid #BBB;
}

#navi li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
	padding-bottom: 1em;
	width: 11em;
	

}

#navi li ul li { /* third-and-above-level lists */
	background-image:  url(./images/arrow_grey.gif);
	background-position: top left;
	background-repeat: no-repeat;
	padding: 0px 0px 5px 10px;
	width: 11em;
}


#navi li:hover ul ul, #navi li.sfhover ul ul {
	left: -999em;
	display: block;
	
}

#navi li:hover ul, #navi li li:hover ul, #navi li.sfhover ul, #navi li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	display: block;
	
}


