/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	border-bottom:1px solid #906119;	
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	height:15px;
	margin:0;
	padding:7px 5px;
	width:120px;
	background:#a5752a;
	cursor:pointer;
	text-align:center;
	border-right:1px solid #906119;
}

/* 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: #FFF;
	width:100%;
	font-size:11px;
	font-weight:900;
	text-transform:uppercase;
}

.dropdown a:hover, .dropdown li:hover a, .dropdown li:hover li:hover a, .dropdown li:hover li:hover li:hover a{
	text-decoration:none;
	color:#FF0
}

.dropdown li:hover li a,.dropdown li:hover li:hover li a{
	text-decoration:none;
	color: #FFF;
}
/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #906119;
	border-top:0;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#a5752a url('expand_down.gif') center left no-repeat;
	padding-left:20px;
	width:105px;
}
.dropdown li.submenu-down:hover{
	background:#a5752a url('expand_down_hover.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*/
.dropdown li.submenu-left{
	background:#a5752a url('expand_right.gif') center right no-repeat;
	padding-right:20px;
	width:105px;
}
.dropdown li.submenu-left:hover{
	background:#a5752a url('expand_right_hover.gif') center right no-repeat;
	padding-right:20px;
	width:105px;
}