/************************
  Dropdown Menu Styles
************************/

ul#dropDownMenu{
	padding: 0px;
	margin: 0px;
	list-style: none;
	width:801px; /* overall top menu width */
	height:37px; /* overall top menu height 8 */
}

ul#dropDownMenu li{
	float:left;
	position:relative;
	text-indent: 0px;
}
ul#dropDownMenu>li{
	height:37px;
}

ul#dropDownMenu li ul{
	padding: 0;
	margin: 0;
	list-style: none;
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	background-color:#e9ddc8; /* dropdown menu items background */
	z-index:4;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #E6D5AC;
	border-right-color: #E6D5AC;
	border-bottom-color: #E6D5AC;
	border-left-color: #E6D5AC;
}
ul#dropDownMenu li>ul{
	top: auto;
	left: auto;
}
/* IE 6 hack */	
ul#dropDownMenu li:hover ul{
	margin-top:37px;
	display: block;
}
ul#dropDownMenu li.over ul{
	display: block;
	margin-top:37px;
}
/* undo the IE6 hack */
ul#dropDownMenu > li:hover > ul{
	margin-top:37px;
	display: block;
}
ul#dropDownMenu > li.over > ul{
	display: block;
	margin-top:37px;
}
/* sub menu item styles */
ul#dropDownMenu ul li{
	padding-left: 8px;
	padding-right: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding-bottom: 5px;
	padding-top: 5px;
	color: #000000; /* dropdown menu items text */
	background-color:#f2e9d5; /* dropdown menu items background */
	clear:left;
	width:180px;
	text-align:left;
	margin-left:0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EDE1C5;
}
ul#dropDownMenu ul li:hover{
	background-color:#ffffff; /* dropdown menu items background on hover */
	text-decoration:underline;
}
ul#dropDownMenu ul li a{
	display:block;
	height:auto;
	color: #804d0f; /* dropdown menu items text */
	background-image:none;
	text-decoration:none;
	text-indent:0px;
	width:100%;
}
ul#dropDownMenu ul li a:hover{
	display:block;
	background-color:#ffffff; /* dropdown menu items background on hover */
	text-decoration:underline;
}