/* suckerfish vertical menu styles */
ul#nav {
	width:165px;	
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1px;}
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1px;
	width:165px;
}

#nav a {
	display: block;
	width: 199px;
	padding:2px;
}
#nav > a {
	width:174px;
}
#nav li { /* all list items */
	float: left;
	width: 165px; /* width needed or else Opera goes nuts */
}
#left-column ul.prod ul li a {
	display: block;
	width: 199px;
	padding:2px 2px 2px 23px;
}
#left-column > ul.prod ul li a {
	display: block;
	width: 174px;
	padding:2px 2px 2px 23px;
}



#nav li ul { /* second-level lists */
	position: absolute;
	background-color:#DEDEDE;
	z-index:999;
	border:1px solid #6B1856;
	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:199px;
	height:1px;
	width:1px;
	height:auto;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	margin-left: -1000em;
	width:199px;
	height:auto;
	overflow:visible;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	margin-left: 160px;
	width:199px;
	height:auto;
	overflow:visible;
}
#nav li li:hover ul, #nav li li.sfhover ul {
	margin-left: 160px;
	width:199px;
	height:auto;
	overflow:visible;
}


