/* this is the main UL element*/
.dropdown{
float:right;
	display:none;
	margin-top:60px;
	margin-right:5px;
	padding:0;
	list-style:none;
	border-bottom:0px solid #B8A789;
	padding-bottom: 4px;
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:3px;
	width:140px;
	background-color:#262626;
	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;
	font: 11px verdana, arial, sans-serif;
	width:100%;
	text-align:left;
		padding-left:15px;
	
}

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

/* 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.png') center left no-repeat;
	padding-left:1px;
	padding-bottom:10px;
	margin-bottom:5px;
	width:125px;
	font-weight: normal; 
}

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