@charset "utf-8";
/* GOOGLE FONTS families | font-family: 'Roboto', sans-serif; font-family: 'Open Sans', sans-serif; font-family: 'Oswald', sans-serif; */

#mymenu { width: 982px; height: 37px; background-color:#192017; font-family:'Oswald', sans-serif; font-weight: 300; z-index:1;}
#content {
	clear: left;
	color: #666666;
	width: 952px;
	padding:10px;
	font-family:'Oswald', sans-serif; 
	font-weight: 300;
}


#nav, #nav ul {
    line-height: 1;
    list-style: none outside none;
    margin: 0;
    padding: 2px 2px 1px 10px;
    width: 972px;
    z-index: 10;
}

#nav a {
	display: block;
	width: auto;
	font-family:'Oswald', sans-serif;
	font-weight: 400;
	font-size:18px;
	text-decoration:none;
}
#nav li a {
	color:#ff9600;
}
#nav li a:hover {
	color:#fff;
}
#nav li ul li a {
	color:#333333;
}
#nav li ul li a:hover {
	color:#990000;
}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	background: #192017;
	padding:7px 7px 7px 7px;
	border-bottom:1px solid #000;
	//border-right:1px solid #000;	
}

	
#nav li ul { /* second-level lists */
	position: absolute;
	background: #e0e0e0;
	width: 193px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-top:10px;			
}
#nav li ul li{ /* second-level lists */
	background: #e0e0e0;
	width: 201px;
	border-bottom:none;
	margin-left:-1px;
	color:#990000;	
	border-bottom:1px solid #fff; 
    font-size:12px;
}


#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10.5em;
	background: #ccc;
	border-bottom:none;
	color:#fff;	
	border-bottom:1px solid #fff;		
}
#nav li ul li ul li{ /* third-and-above-level lists */
	background: #ccc;
	border-bottom:none;
	color:#fff;	
	border-bottom:1px solid #fff;		
}


#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}