/* this is the main UL element*/

#nav_container { width: 860px; margin: 0 auto; padding:15px 0px 0px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; font-weight: bold; letter-spacing: .125px; }

.dropdown{
	display:none;
	margin:0;
	padding:10px 0px 10px 10px;
	list-style:none;
 }

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
	padding:5px 20px 5px 20px;
	margin-top: 4px; 

}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	cursor:pointer;
	text-transform: uppercase;
	padding: 0px 7px 6px 7px;
}

/* submenus*/
.dropdown li ul li{
	margin:0;
	width:220px;
	background-color:#FF0000;
	cursor:pointer;
	text-transform: capitalize;
	border: none;
	margin-bottom: 1px;
	padding: 0px ;

}


.dropdown li ul li a{ color: #FFFFFF; 	padding: 5px;}

/* submenu hover*/
.dropdown li ul li a:hover{
	margin:0;
	cursor:pointer;
	text-transform: capitalize;
	color: #000000;
	background: #FFB119;
	padding: 5px;
	width: 210px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown li a {
	text-decoration:none;
	color:#FFB119;
	width:100%;
}

.dropdown li a:hover {
	text-decoration:none;
	color:#FFFFFF;
	width:100%;
}


.dropdown a:hover{
	text-decoration:none;
	color: #FFFFFF;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #444;
	border-top:0;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background: url('expand_down.gif') center right no-repeat;
	padding-right:20px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background: url('expand_right.gif') center right no-repeat;
	padding-right:20px;
}

.white { color: #FFFFFF; padding-left: 5px;}