/* suckerfish vertical menu styles */
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	width:160px;
	text-align: left;
}

#nav a {
	display: block;
	width: 160px;
}

#nav li a{
	padding: 4px 0 4px 15px;
	margin:0 px;
	border-bottom: 2px solid #FFF;
	display: block;
	width:	160px;
}

* html #nav li a {
	width: 175px;
}

#nav li a:hover {
	background: url(nav-star.gif) no-repeat #FFD6F9;
	text-decoration: none;
	margin: 0px;
	padding: 4px 0 4px 15px;
	border-bottom: 2px solid #FFF;
	display: block;	
	width: 160px;
}

* html #nav li a:hover {
	width: 175px;
}

#nav li { /* all list items */
	float: left;
	width: 160px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-color:#FEFFBD;
	z-index:999;
	border:1px solid #FFD6F9;
	height:1px;
	width:1px;
	margin-top : -1.35em;
	margin-left: -1200em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	overflow:hidden;/* hides submenus in case longer than page height */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 -1000em;
	width:160px;
	height:1px;
	width:1px;
	height:auto;
}

* html #nav li ul ul {
	width: 175px;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	margin-left: -1000em;
	width:175px;
	height:auto;
	overflow:visible;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	margin-left: 170px;
	width:175px;
	height:auto;
	overflow:visible;
}
#nav li li:hover ul, #nav li li.sfhover ul {
	margin-left: 170px;
	width:175px;
	height:auto;
	overflow:visible;
}


