.mainNav { background-color: #1e0604; background-image:url(images/bg_topnav.gif); background-repeat:no-repeat;}

#nav { 
	margin: 0;
	padding: 0;
}

#nav li.on ul, #nav li.off ul {
	margin: 0;
	padding: 0;
}

#nav a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none; 
	font-size: 11px;
	text-align: center;
	
}

#nav li { /*float the main list items*/
	margin: 0;
	float: left;
	display: block;
	padding-right: 0px;
	padding-top: 8px
}

#nav li ul {
	display: none;
}

#nav li.off ul, #nav li.on ul { /*put the subnav below*/
	position: absolute;
	top: 33px;
	*top: 44px;
	left: 5px;
	padding-top: 10px;
	background: #d6e3b0;
	height: 28px;
	width: 736px;
}

#nav li a {
	color: #fff;
	font-weight: normal;
	display: block;
	height: 15px;
	width: 90px;
	padding: 0px;
}

#nav li.on a {
	color: #fff;
	background-color: #6b4628; 
}

#nav li.on ul a, #nav li.off ul a {
	float: left; /*ie doesn't inherit the float*/
	border: 0;
	color: #fff;
	width: auto;
	margin-right: 5px;
}

#nav li.on ul {
	display: block;
}

#nav li.off:hover ul {
	display: block;
	z-index: 6000;
			}

#nav li.off a:hover, #nav li:hover a {
	background: #6b4628;
	color: #fff;
}

/*left submenu*/

ul#sidenav {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 193px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}

ul#sidenav li {
	position: relative;
	}
	
ul#sidenav li ul {
	position: absolute;
	left: 192px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul#sidenav li a {
	display: block;
	text-decoration: none;
	color: #fff;
	background: #9e9f5d; /* IE6 Bug */
	padding: 5px;
	border-top: 1px solid #d6e3b0;
	border-bottom: 0;
	}
ul#sidenav li a#selected {color: #7a8566; background: #d6e3b0;}	

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

ul#sidenav li a:hover { color: #7a8566; background: #d6e3b0; } /* Hover Styles */
		
ul#sidenav li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
ul#sidenav li:hover ul, li.over ul { display: block; } /* The magic */