@charset "utf-8";
/* CSS Document */

#main-nav{position:absolute; bottom: 0; left: 60px; height: 22px; width: 720px; z-index: 5; 
 }

#main-nav img{float: left;}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	color: #ffffff;
	z-index: 5;
}

#nav a {
	display: block;
    line-height: 22px;
	padding: 0 6px 0 10px;
	color: #ffffff;
	background: #a59b92;
}

#nav a:visited {
	color: #ffffff; 
}

#nav a:hover{
	color: #666666;
}


#nav li { /* all list items */
	float: left;
	z-index: 5;
	
}


#nav li.last{
	margin-right: 0px;
}	

#nav li ul { /* second-level lists */
	position: absolute;
	width: 205px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index: 5;
}

.submenu{
	
}

#nav li ul li a { /* second-level lists */
	color: #CC6600;
	background: none;
	width: 205px;
	padding: 0;
	font-weight:600
}

#nav li ul li a:visited{
	color: #CC6600;
	background: none;
	padding: 0;
	font-weight:600;
}

#nav li ul li{
	padding: 0 0 10px 10px;
	color: #666666;
	font-size: 10px;
	width: 180px;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	padding: 0px;
	color: #666666;
	background:url(../images/design/drop_panel.png) no-repeat;
	background-position:bottom right;
	
}





