/* @override http://test.livenz.co.nz/stylesheets/nav.css */

#navigation {
	float: left;
	width: 780px;
	height: 36px;
	line-height: 120%;
}

#navigation ul li {
	list-style-type: none;
	font-size: 11px;
	float: left;	
}

#navigation a, #navigation a.visited {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	padding: 17px 12px 12px;
}

#navigation a.selected {
	color: #86cb30;
}

#navigation ul li ul li a, #navigation li.selected ul li a {
  text-transform: none;
}

#navigation a:hover {
	color: #a19c97;
}


#navigation ul li ul li { /* all list items */
        border: none;
        float: none;
        display: block;
	margin-bottom: -12px;
}

#navigation li ul { /* second-level lists */
	position: absolute;
	background: #3d3f3f;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
       z-index: 999;
	padding: 2px 0 12px;
}

#navigation li:hover ul, #navigation li.sfhover ul { /* lists nested under hovered list items */
	left: auto; /* set this to auto to enable the drop-down menus - comment out to disable */
}

#navigation li:hover, #navigation li:hover a, #navigation li:hover.selected a {
	background: #3d3f3f;

}