#nav, #nav a{
	font-family:arial,verdana,helvetica;
	font-size:11px;
}

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

#nav a {
	display: block;
}
#nav a:hover{
	color:#cc0000;
}

#nav li { /* all list items */
	float: left;

}

#nav li ul{
	width: 114px; /* width needed or else Opera goes nuts */
}

#nav li ul li { /* just the links in the dropdowns */
	font-size:11px;
	padding-top:3px;
	padding-bottom:3px;
	padding-left:3px;
	padding-right:3px;
	width:170px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	
	background-image:url("images/dropbg.gif");
	background-position:bottom left;
	background-repeat:repeat-x;
	background-attachment:scroll;
	
	background-color:#f7f7f7;
	/*border-bottom:2px solid #cc0000;*/
	border-left:1px solid #aaa;
	border-right:1px solid #777;
	border-top:1px solid #c7c7c7;
	width: 195px;
	padding-left:15px;
	padding-top:5px;
	/*padding-right:15px;*/
	padding-bottom:5px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

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

#nav li ul li{ /* this puts a light underline under each dropdown link */
	border-bottom:1px solid #d6d6d6;
}