#nav, #nav ul { /* all lists */
	font-size: 12px;
	font-weight: bold;
	padding: 0px;
	margin: 0px;
	list-style: none;
	line-height: 1.1em;
	z-index: 100;
}
#nav li ul  { border-top: 1px solid #222354; border-right: 0px; border-bottom: 0px; border-left: 0px }
#nav a {
	color: #222354;
	display: block;
	width: 118px;
	padding: 5px 4px 5px 4px;
	margin-left: 0px;
}
#nav a:hover {
	color: #222354;
	text-decoration: none;
}
#nav li { 
	/* all list items */
	text-align: center; 
	                    
	float: left;
	width: 126px;  /* was 148 */ /* width needed or else Opera goes nuts */
}
#nav li:hover, #nav li.sfhover { /* top list items hovered */
	background-color: #999;
}
#nav li:hover a, #nav li.sfhover a, #nav li:hover a.selected, #nav li.sfhover a.selected { 	/* selected top list items hovered */
	color: #222354;
}
#nav li a {
	color: #bbb;
}
#nav li a.selected {
	color: #FFD56A;
}
#nav li ul { /* second-level lists */
	font-size: 11px;
	font-weight: normal;
	color: #222354;
	position: absolute;
	background: #ccc;
	width: 126px;
	left: -999em; 
	/* hides menus; better than "display: none", which screen readers ignore */
}
#nav li ul li {
	text-align: left;
}

#nav li ul li a {
	margin-left: 3px;
	width: 112px;
	border-top: 1px solid #999;
	color: #222354;
}
#nav li:hover ul, #nav li.sfhover ul { 
	/* lists nested under hovered list items */
	left: auto;
}

#nav li ul li.selected a  { 
/*	font-weight: bold */
}