/* this is the main UL element*/
.dropdown{
	margin:0;
	padding:0;
	list-style:none;
	font-size:12px;
	width:100%;
	border:0px;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #ffffff;
	list-style:none;
	width:180px;
	/*width:90%;*/
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	border-top:0px solid #ffffff;
	width:90%;
	background-color:#618135;
	cursor:pointer;
	border-top:0;
}

/* 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:#ffffff;
	/*width:150px;*/
	width:90%;
}

.dropdown a:hover{
	text-decoration:underline;
	
	
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#618135 url('expand_down.gif') center left no-repeat;
	padding-left:20px;
	/*width:150px;*/
	width:180px;
	font-size:11px;
	font-weight:bold;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#618135 url('expand_right.gif') center right no-repeat;
	/*padding-right:5px;*/
	/*width:150px;*/
	width:90%;
	font-size:11px;
	font-weight:bold;
}
