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

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width:120px;
	background-color:#fff;
	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:#FFB119;
	width:100%;
}

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

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{

	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
	width:105px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-position:center right;
	padding:5px;
	width:120px;
}