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

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0px;
	padding:0px;
	width:auto;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	background-color: #937215;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #C90;
	margin: 0px;
	padding: 2px;
	height: auto;
	display: inline-block;
	width: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a:link, a:visited, a:active{
	text-decoration:none;
	margin: 0px;
	padding: 0px;
}

.dropdown a:hover{
	text-decoration:none;
	margin: 0px;
	padding: 0px;
}
.dropdown2 a{
	text-decoration:none;
	color:#F2F0E3;
	margin: 0px;
	background-color: #937215;
	padding: 0px;
	width: 100px;
}

.dropdown2 a:hover{
	text-decoration:none;
	color:#211B05;
	margin: 0px;
	background-color: #927016;
}

