/* Suckerfish - Variable width items */

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


#nav a {
	display: block;
	padding: 0 17px;
	font: bold 0.7em Georgia, "Times New Roman", Times, serif;
	color: #fff;
	line-height: 35px;
	text-decoration: none;
	text-align: center;
	position: relative;
}

#nav a:hover {
	text-decoration: none;
	color: #E8555A;
}

#nav li:hover, #nav li.sfhover {
}

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

#nav li ul { /* second-level lists */
	position: absolute;
	background: #ff0000 url(../images/dropdown.gif) no-repeat bottom left;
	width: 173px;
	border: 2px solid #034486;
	padding: 0;
	margin-top: -8px;
	padding: 0 0 5px 0;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

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

#nav li ul a { /* second-level lists */
	padding: 0 0 0 15px;
	line-height: 25px;
	text-align: left;
	color: #fff;
	font-weight: bold;
	width: 158px;
}
#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;
}

#nav li:hover, #nav li.hover {
    position: static;
}

