/* this is the main UL element*/
.dropdown{
	margin: 0px;
	padding: 0px;
	list-style: none;
	border-bottom: 1px solid #333333;
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	color: #333333;
	background-color: #E4232F;
	display: inline;
	line-height: 30px;
	margin: 0px;
	padding: 0px 0px 0px 20px;
	width: 113px;
	cursor: pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	color: #333333;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border: 1px solid #333333;
	border-top: 0;
	margin-left: -1px;
	width: 173px;
}

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

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