/* CSS Document */

/************************
  Dropdown Menu Styles
************************/

ul#dropDownMenu{
	display: block;
	height: 41px;
	width:920px;
	padding: 0px;
	margin: 0 auto;
}

ul#dropDownMenu li{
	position:relative;
	text-align: center;
	padding: 0px;
	float: left;
	list-style-type: none;
}
ul#dropDownMenu>li{
	height:41px;
}
ul#dropDownMenu li a{
	color: #f5eed5;
}

ul#dropDownMenu li ul{
	list-style: none;
	display: none;
	position: absolute;
	background-color:#701800; /* dropdown menu items background */
	z-index:4;
	width: 200px;
	text-align: left;
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #A79D85;
	border-left-color: #A79D85;
}
ul#dropDownMenu li ul a {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #A79D85;
}
ul#dropDownMenu li>ul{
	top: auto;
	left: auto;
}
/* IE 6 hack */
ul#dropDownMenu li:hover ul{
	margin-top:39px;
	display: block;
}
ul#dropDownMenu li.over ul{
	display: block;
	margin-top:39px;
}
/* undo the IE6 hack */
ul#dropDownMenu > li:hover > ul{
	margin-top:39px;
	display: block;
}
ul#dropDownMenu > li.over > ul{
	display: block;
	margin-top:39px;
}
/* sub menu item styles */
ul#dropDownMenu ul li{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #701800; /* dropdown menu items text */
	background-color:#751C09; /* dropdown menu items background */
	clear:left;
	width:200px;
	text-align:left;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #F5EED5;
	border-bottom-color: #F5EED5;
	border-left-color: #F5EED5;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
ul#dropDownMenu ul li:hover{
	background-color:#701800;
	color: #F5EED5;
}
ul#dropDownMenu ul li a{
	display:block;
	color: #F5EED5; /* dropdown menu items text */
	text-decoration:none;
	font-weight:normal;
	padding: 5px;
}

ul#dropDownMenu ul li a:hover{
	display:block;
	background-color:#701800;
	color: #701400;
	background-image: url(../images/subnav-bg.gif);
	background-repeat: repeat-x;
	background-position: top;
}

html>body ul#dropDownMenu ul li a:hover{
	display:block;
	background-color:#701800; /* dropdown menu items background on hover */
	color: #F5EED5;
	text-decoration: none;
}
