﻿@charset "utf-8";
/* CSS Document */


#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
#nav a {
	display: block;
	text-decoration: none;
	
	
}

#nav > li {
    line-height: 40px;
    background-color: #000;
    text-align: center;
}

#nav > li > a {
	color: #fff;

}
#nav ul li{
	width: 100%
	
}
#nav ul a{
	padding: .7em 1em;
	color: #000;
	text-decoration:none;
}



#nav li { /* all list items */
	float: left;
		
}
#nav li ul li{ /* all list items */
        font-size: 14px;
		text-align: left;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #fff;
	width: 20em; /*width needed or else Opera goes nuts */
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border: solid 1px #ccc;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -2.4em 0 0 20em;
}

 #nav ul li:nth-of-type(odd){
	background-color: #E7E7E7;
}

#nav ul a:hover     {
background-color: #2B2B2B;
color: #fff;
}

#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;
}


