/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0 !important;
	padding:0;
	list-style:none;
}

/* 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:5px;
	width:165px;
	background-color:#848484;
	cursor:pointer;
}

.dropdown li:hover {
	background-color: #3d3d3d;
}

.dropdown li#selected {
	background-color: #3d3d3d;
}

.dropdown li#selected a {

}

.dropdown li#selected.submenu-left {
	background:#3d3d3d url('exp-right-over.gif') center right no-repeat;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a, .dropdown a:link, .dropdown a:visited{
	text-decoration:none;
	color:#FFFFFF;
	width:100%;
	font-weight:bold;
}

.dropdown a:hover{
	color:#ffd905;
}

.dropdown > li {border-top: 1px inset #000;}
.dropdown > li.first {border-top:none;}

.dropdown > li > a {font-size:14px;}

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

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

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#848484 url('exp-right-off.gif') center right no-repeat;
	padding-right:20px;
	width:150px;
}

.dropdown li.submenu-left:hover {
	background:#3d3d3d url('exp-right-over.gif') center right no-repeat;
}