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

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	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%;
	padding-top:5px;
	padding-bottom:5px;
	overflow:hidden;
	
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #dbdbdb;
	border-top:0;
	background:#f2f2f2;
	width:150px;
	height:auto;
	padding:20px;

}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:center left no-repeat;
	
	
}

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

