/* this is the main UL element*/
.dropdown{
	height:55px; 
	width:840px;
	background-color:#000000;
	display:none;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul{
	height:55px; 
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0;
	width:105px;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	display:block; 
	float:left;  
	width:94px;
	height:45px;
	padding:10px 0px 0 10px;
	background-color:#000000;
	color:#FFFFFF;
	text-decoration:none;
	text-transform:uppercase;
	font-size:12px;
	border-right:1px solid #ffffff;
	left:-1px;
}

.dropdown ul li a{
	width:95px;
}

.dropdown a:hover{
	background-color:#003366;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul {
	margin-top:57px;
}
.dropdown ul li ul{
	margin-top:0px;
}
.dropdown ul li ul li{
	margin-top:-1px;
	margin-bottom:1px;
}

.dropdown ul li{
	height:36px;
}
.dropdown li ul li {
	width:210px;
}


.dropdown ul li a{
	border-right:none;
	width:199px;
	height:25px;
	/*margin-bottom:1px;*/
	margin-right:1px;
	margin-top:-1px;
	border:none;
}
.dropdown ul li ul {
	margin-top:1px;
}
.dropdown ul li ul li a{
	height:25px;
	/*border-top:1px solid #ffffff;*/
	/*margin-bottom:1px;*/
	margin-right:1px;
}

/* these are the LIs that contains a submenu*/
.dropdown .submenu-down a,
.dropdown .submenu-left a{
	background-image:url('/images/nav/drop.gif');	
	background-position:bottom right;
	background-repeat:no-repeat;
}

.dropdown ul li  a{
	background-image:none!important;
}
.dropdown ul li a{
	background-image:none!important;
}

.current_page_item a{
	background-color:#5b6648;
}
.current_page_item ul li a{
	background-color:#000000;
}