/* CSS Document */

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

ul#dropDownMenu{
	padding: 0px;
	margin: 0px;
	list-style: none;
	width:940px; /* overall top menu width */
	height:46px; /* overall top menu height 8 */
	line-height: 0em; /* removes a space between the main menu bar and the drop-down submenu */
}

ul#dropDownMenu li{
	float:left;
	position:relative;
	margin: 0px;
}
ul#dropDownMenu>li{
	height:46px;
	margin: 0px;
}

ul#dropDownMenu li ul{
	padding: 0px;
	margin: 0px;
	*margin-left: -130px; /* IE7 hack */
	list-style: none;
	display: none;
	position: absolute;
	top: 1em;
	left: 0px;
	background-color:#FFFFFF; /* dropdown menu items background */
	z-index:4;
}
ul#dropDownMenu li>ul{
	top: auto;
	left: auto;
}
ul#dropDownMenu > li:hover > ul{
	display: block;
	margin-top:0px;
	*margin-top: 46px; /* IE7 hack */
}
ul#dropDownMenu > li.over > ul{
	display: block;
	margin-top:0px;
	*margin-top: 46px; /* IE7 hack */
}

/* sub menu item styles */
ul#dropDownMenu ul li{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #566422; /* dropdown menu items text */
	background-color:#F1E7C8; /* dropdown menu items background */
	clear:left;
	width:200px;
	text-align:left;
	margin:0px;
	line-height: 1.5em;
	border-right: 1px solid #E2CD8B;
	border-bottom: 1px solid #E2CD8B;
	border-left: 1px solid #E2CD8B;
}
ul#dropDownMenu ul li:hover{
	background-color:#E2CD8B;
	color: #FFFFFF;
}
ul#dropDownMenu ul li a{
	display:block;
	color: #566422; /* dropdown menu items text */
	text-decoration:none;
	font-weight:normal;
	padding: 5px;
}

ul#dropDownMenu ul li a:hover{
	display:block;
	background-color:#E2CD8B;
	color: #FFFFFF;
	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:#566422; /* dropdown menu items background on hover */
	color: #F1E7C8;
	text-decoration: none;
}



