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

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

ul#dropDownMenu li{
	float:left;
	position:relative;
}
ul#dropDownMenu>li{
	height:27px;
}

ul#dropDownMenu li ul{
	padding: 0;
	margin: 0;
	list-style: none;
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	background-color:#d8d6bf; /* dropdown menu items background */
	z-index:4;
}
ul#dropDownMenu li>ul{
	top: auto;
	left: auto;
}
/* IE 6 hack */
ul#dropDownMenu li:hover ul{
	margin-top:17px;
	display: block;
}
ul#dropDownMenu li.over ul{
	display: block;
	margin-top:17px;
}
/* undo the IE6 hack */
ul#dropDownMenu > li:hover > ul{
	margin-top:27px;
	display: block;
}
ul#dropDownMenu > li.over > ul{
	display: block;
	margin-top:27px;
}
/* sub menu item styles */
ul#dropDownMenu ul li{
	padding-left: 5px;
	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:#d8d6bf; /* dropdown menu items background */
	clear:left;
	width:200px;
	text-align:left;
	margin-left:0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #C8C5A4;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #C8C5A4;
	border-left-color: #C8C5A4;
}
ul#dropDownMenu ul li:hover{
	background-color:#ffffff; /* dropdown menu items background on hover */
	text-decoration:underline;
}
ul#dropDownMenu ul li a{
	display:block;
	color: #000000; /* dropdown menu items text */
	text-decoration:none;
	font-weight:bold;
}
ul#dropDownMenu ul li a:hover{
	display:block;
	background-color:#ffffff; /* dropdown menu items background on hover */
	text-decoration:underline;
}