
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	z-index: 600;
	white-space: nowrap;
	float: left;
	clear: left;
}
#nav a {
	display: block;
	color: #fff;
	font-weight: bold;
	font-size: 11px;
	text-decoration: none;
}
#nav li { /* all list items */
	float: left;
}
#nav li ul { /* properties whole submenu */
	background: #753086;
	background-repeat: repeat;
	width: 165px;
	position: absolute;
	/* cursor: pointer; */
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul li { /* submenu-item */
	width: 165px;
	height: 16px;
	padding: 8px 0px 4px 0px;
	/* border-bottom: 1px solid white; */
	border-left: 1px solid white;
	border-right: 1px solid white;
	border-top: 1px solid white;
}
#nav li ul li a { /* submenu-item-link */
	padding-left: 8px;
}
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
#nav li:hover, #nav li.hover {
	position: static;
}
#nav li:hover {
	background: #5cb324;
}
#nav li ul li:hover, #nav li ul li:sfhover {
	background: #5cb324;
}

