/* 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:1px;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:4px;
	background-color:#cccc99;
	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:#330;
	width:100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-variant: normal;
	font-weight: bold;
	text-transform: uppercase;
}

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

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background-color:#cccc99;

	background: center no-repeat;
	padding-left:0px;
	width:100%;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background: center no-repeat;
		background-color:#cccc99;


}
