/* Suckerfish - Variable width items */

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


#nav a {
	display: block;
	color: #fff;
	padding: 5px 13px 6px 13px;
	font-size: 12px;
	text-decoration: none;
	text-align: center;
	position: relative;
	border-right: 1px solid #fff;
}

#nav a:hover {
	color: #000;
}

#nav li.li_selected a {
	color: #000;
	background: #FEC59E;
	}
	
#nav li.li_selected ul li a {
	background: #F16303;
	color: #fff;
	}

#nav li { /* all list items */
	float: left;
	background: url(../images/nav_bg.jpg) 0 0 no-repeat;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #ff0000;
	width: 141px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border-top: 1px solid #fff;
}

#nav li ul li {
	margin: 0;
	border: none;
}

#nav li ul a { /* second-level lists */
	padding: 5px 0 5px 10px;
	text-align: left;
	color: #fff;
	width: 161px;
	background: #F16303;
	border-bottom: 1px solid #FAA166;
}
#nav li ul a:hover { /* second-level lists */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1.3em 0 0 8.7em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

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