/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	width: 100%;
	list-style:none;
	border-top: 1px solid #F2D9AB;
	border-bottom: 1px solid #F2D9AB;
	background-color: #600000;
	background-image: url("../img/centerbg.gif");
	background-repeat: repeat-x;
	margin-top: 25px;
	padding: 8px;
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	padding-left: 15px;
	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;
	font-size: 18px;
	color: #C3A97B;
	width:100%;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #F2D9AB;
	border-top:0;
	margin-left:0px;
	background-color: #600000;
	padding: 10px;
}

/* 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{
	background-image:url('expand_right.gif');
	background-position:center right;
	padding:5px;
	/*width:120px;*/
}