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

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

/* these are all the LIs in the menu*/
.dropdown ul li{
	margin:0;
	padding:0;
	background-color:#F2D4B3;
	cursor:pointer;
	height:auto;
	border:1px solid #551700;
	border-top:0;
	margin-left:-1px;
	width:199px;
}
/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown ul li a {
	line-height:18px;
	text-decoration:none;
	color:#000;
	width:192px;
	padding:6px 3px 6px 6px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down a {
	/*background:url('expand_down.gif') center right no-repeat;*/
	/*padding-left:20px;*/
	
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left a, .dropdown li.submenu-left ul li.submenu-left a {
	background:url('expand_right.gif') center right no-repeat;
	/*padding-right:20px;*/
}

.dropdown a:hover, .dropdown li.submenu-left ul li a:hover, .dropdown li.submenu-down a:hover {
	text-decoration:none;
	background:#CD9871;
	color:#fff;
}
.dropdown li.submenu-left ul li a, .dropdown li.submenu-left ul li.submenu-left ul li a { background-image:none; }
