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

#nav a {
	display: block;
	width: 148px;
	/*background: orange;*/
	color: white;
	text-decoration: none;
	/*padding-left: 11px;*/
	height: 13px;
	/*padding-top: 1px;*/
	font-size: 10px;
	font-weight: bold;
	text-indent: 12px;
}
#nav a:hover {
	display: block;
	width: 148px;
	/*background: orange;*/
	color: black;
	text-decoration: none;
	/*padding-left: 10px;*/
	height: 13px;
	/*padding-top: 1px;*/
	text-indent: 12px;
}


#nav ul {

	width: 148px;
}

#nav li { /* all list items */
	margin-right: 6px;
	float: left;
	margin-top: 0px;
	width: 148px; /* width needed or else Opera goes nuts */
	/*font-weight: bold;*/
	/*background: orange;*/
	text-transform: uppercase;
}

#nav li ul { /* second-level lists */
	position: absolute;
	margin-left: 0px;
	background: transparent;
	width: 148px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li{ /* second-level list items */

	/*background: orange;*/
	margin: 0px;

}

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