/* CSS Document */

/********************************
  Text-Based Dropdown Menu Styles
*********************************/

ul#dropDownMenuText{
	padding: 0 0 0 25px;
	margin: 0px;
	list-style: none; /* overall top menu width */
	height:45px; /* overall top menu height - was 27 */
}

ul#dropDownMenuText li{
	float:left;
	position:relative;
	/*all TLH below*/
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
}

ul#dropDownMenuText li span a {
	display: block;
	text-decoration: none;
	color: #EEF1ED;
	padding:10px 18px 12px;
	margin-top: 2px;
	margin-bottom: 2px;
}
ul#dropDownMenuText li span a:hover {
	text-decoration: none;
	background-color: #EF8C28;
	background-image: url(../images/bg-nav-rollover.jpg);
	background-repeat: repeat-x;
	color: #FFFFFF;
}

ul#dropDownMenuText>li{

}

ul#dropDownMenuText li ul{
	padding: 0;
	margin: 0;
	list-style: none;
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	background-color:#FFFFFF; /* dropdown menu items background */
	z-index:4;
}
ul#dropDownMenuText li>ul{
	top: auto;
	left: auto;
}
/* IE 6 hack */
ul#dropDownMenuText li:hover ul{
	margin-top:43px;
	display: block;
	background-image: none; /*TLH*/
}
ul#dropDownMenuText li.over ul{
	display: block;
	margin-top:43px;
}
/* undo the IE6 hack */
ul#dropDownMenuText > li:hover > ul{
	margin-top:44px;
	display: block;
	background-image: none; /*TLH*/
}
ul#dropDownMenuText > li.over > ul{
	display: block;
	margin-top:44px;
}
/* sub menu item styles */
ul#dropDownMenuText ul li{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #262223; /* dropdown menu items text */
	background-color:#FFFFFF; /* dropdown menu items background */
	clear:left;
	width:200px;
	text-align:left;
	margin-left:0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	letter-spacing: 0em;
}

ul#dropDownMenuText ul li:hover{
	background-color:#CEE6E8;
}
ul#dropDownMenuText ul li a{
	display:block;
	color: #262223; /* dropdown menu items text */
	text-decoration:none;
	font-weight:normal;
	padding: 5px;
	background-image: none; /*TLH*/
}

ul#dropDownMenuText ul li a:hover{
	display:block;
	background-color:#E2CEA9;
	background-image: url(../images/subnav-bg.gif);
	background-repeat: repeat-x;
	background-position: top;
}

html>body ul#dropDownMenuText ul li a:hover{
	display:block;
	background-color:#E2CEA9;
	text-decoration: none;
}
