/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	width:50px;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #868686;
	list-style:none;
	color:#3F3F3F;
	text-decoration:none;
		background-color:#cbcbcb;
		display:block;

}

/* these are all the LIs in the menu*/
.dropdown li{
	display:block;
	margin:0;
	padding:5px;
	width:130px;

	cursor:pointer;
	text-align:left;
	color:#3F3F3F;
		list-style:none;
	text-decoration:none;
}
.dropdown li:hover{
		background:#072fe6;
		color:#fdfab4;
		white-space:nowrap;
}
/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	width:100%;
	text-align:left;
	color:#3F3F3F;
	display:block;
}

.dropdown a:hover{
	text-decoration:none;
	color:#fdfab4;
	white-space:nowrap;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #868686;
	border-top:0;
	margin-left:-1px;
	text-decoration:none;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background: transparent url('expand_down.gif') center left no-repeat;
	text-decoration:none;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#cbcbcb url('expand_right.gif') 95% center no-repeat;
	color:#3F3F3F;
	text-decoration:none;
}
.dropdown li.submenu-left:hover{
	background:#072fe6 url('expand_right.gif') 95% center no-repeat;
	color:#fdfab4;
	white-space:nowrap;
	text-decoration:none;
}