#nav_container {
	background:#464f40;
	padding: 2px 0;
	width: 760px;
	height: 21px;
	}

/* this is the main UL element*/
.dropdown{
	display:none;
	margin: 0;
	padding:0;
	list-style:none;
	white-space: nowrap;
	text-align: center;
	font: bold 10px verdana, geogia, sans-serif;
	}
/* these are the inner menus*/
.dropdown ul{
	margin: 0;
	padding: 0;
	list-style: none;
	border-right:1px solid #464F40;
	border-bottom:1px solid #464F40;
	background:#D7D9C0;
	}
/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding: 5px 20px;
	cursor:pointer;
	}
.dropdown ul li a {
	color: #000;
	width: 100%;
	font: normal 11px verdana, geogia, sans-serif;
	}
.dropdown ul li a:hover {
	color: #fff;
	width: 100%;
	}
.dropdown li:hover {
	background: #697861;
	color:#000;
	} 
/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	color:#fff;
	}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	background:#D7D9C0;
	border-bottom:0;
	margin-left:-1px;
	width: 150px;
	text-align:left;
	padding: 5px 15px;
	}

