/* 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;
	width: 100%;
}

/* these are all the LIs in the menu*/
.dropdown li{
	float: left;
	margin:0;

	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;
	display: block;
	width: 100%;
}

.dropdown a:hover{
	background-color: #862220 !important;
	color: #fff !important;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	clear: both;
	float: left;
	width: 100%;
	border-bottom: 1px solid gray;
}

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


}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{

		width: 100%;
}