/* this is the main UL element*/
.dropdown {
	display:none;
	margin:0;
	padding:0;
	list-style:none;
}
.dropdown .menu_item_el
{
	background-image:url(../images/submenubox.gif); 
	width:208px; 
	background-position: bottom left; 
	margin:0px 0px 0px 0px; 
	padding:0px 0px 12px 0px; 	
}
.dropdown .menu_item_el li {
	width:204px; 
	height:auto;
	margin: 0px;
	padding: 0px;
	background-color:#fff;	
	border-bottom:1px solid #444;
}

.dropdown .menu_item_el a {
	text-decoration:none;
	width:100%;
/*	font-family: "Gergia"; */
	font-size: 11px;
	color:#27597B;	
	vertical-align:middle;
	text-align: left;
	margin: 0px;
	padding: 0px;
	padding-top:5px;
}
/* these are the inner menus*/


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

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

.dropdown .menu_item_el a:hover {
	background-color:#ccc;
	width:100%;
	color:#fff;
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down {

}

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