/*##########################################################################################*/
/* NAVIGATION SON OF SUCKERFISH */
/* Don't modify this
/* from: http://www.htmldog.com/articles/suckerfish/dropdowns/
/*##########################################################################################*/

#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	width: 200px;
}

#nav li { /* all list items */
	float: left;
	width: 200px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: orange;
	width: 200px;
	left: -999em;
}

#nav li ul ul {
	margin: -1em 0 0 200px;
}

#nav li:hover ul ul, 
#nav li:hover ul ul ul, 
#nav li.sfhover ul ul, 
#nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, 
#nav li li:hover ul, 
#nav li li li:hover ul, 
#nav li.sfhover ul, 
#nav li li.sfhover ul, 
#nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

