/* this is the main UL element*/
.dropdown{
background-color:#24482A;
display:block;
height:27px;
line-height:1.6em;
margin:0 25px 0 26px;
margin-left:0 !important;
padding:5px 0 10px 0;
position:relative;
text-align:left;
width:700px;
}

/* these are the inner menus*/
.dropdown ul{
	list-style-type:none;
	margin:0;
	padding:0;
    border:1px solid #A0D08C;
}

/* these are all the LIs in the menu*/
.dropdown li{
	background-color:#fff;
	cursor:pointer;
    display:block;
    font-size:10pt; 
	margin:0 5px;
	padding:2px;
	width:120px;
}
 



/* 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:#005418;
	width:100%;
}
	
.dropdown a:hover{
	text-decoration:none;
    background-color:#A0D08C;
}

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

/* these are the LIs that contains a submenu*/
.xdropdown li.submenu-down{
	background:#000 url('expand_down.gif') center left no-repeat;
	padding-left:20px;
	width:105px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.xxdropdown li.submenu-left{
	background:#000 center right no-repeat;
	padding-right:20px;
	width:105px;
}
.submenu-down ul {
    background:#f4f4f4;
}
.submenu-down ul li{
    background:#ffffff;
    font-size:.9em;
    font-weight:normal;
    margin:0 0 5px 0 !important;
    padding:2px;
}
