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

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:0px;
	list-style:none;
	filter:alpha(opacity=80);
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:4px;
	width:120px;
	background-color:#CDCDCD;
	cursor:pointer;
}

.dropdown li:hover{
	background:#A28339;
}

/* 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:#000000;
	width:105px;
}

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

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

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

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	/*background:#000 url('expand_right.gif') center right no-repeat;*/
	background:#CC9900 center right no-repeat;
	padding-right:19px;
	width:105px;
	color:#ffff33;
}
.dropdown li.submenu-left:hover{
	background:#000 url('expand_right.gif') center right no-repeat;
	color:#fff;
}
