/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	line-height:20px;

	background:url(../../images/dropdown_bg.jpg) repeat-x left top;
	
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width:150px;
	background:url(../../images/dropdown_bg.jpg) repeat-x left top;
	cursor:pointer;
	
}

/* 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:100%;
}

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

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	/*background:url(../../images/expand_down.gif) center left no-repeat;*/
	padding-left:0px;
	width:120px;
}

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