/* CSS Document */

/********************************
  Text-Based Dropdown Menu Styles
*********************************/

ul#dropDownMenuText{
	padding: 0px;
	margin: 0px;
	list-style: none;
	width:975px; /* overall top menu width */
	height:28px; /* overall top menu height - was 27 */
}

ul#dropDownMenuText li{
	float:left;
	position:relative;
	/*all TLH below*/
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
}

ul#dropDownMenuText li span a {
	display: block;
	text-decoration: none;
	color: #065e9f;
	margin-top: 1px;
	padding-top: 3px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 8px;
}
ul#dropDownMenuText li span a:hover {
	text-decoration: none;
	background-color:#fed653;
}

ul#dropDownMenuText>li{
	height:28px;
}

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:28px;
	display: block;
	background-image: none; /*TLH*/
}
ul#dropDownMenuText li.over ul{
	display: block;
	margin-top:29px;
}
/* undo the IE6 hack */
ul#dropDownMenuText > li:hover > ul{
	margin-top:28px;
	display: block;
	background-image: none; /*TLH*/
}
ul#dropDownMenuText > li.over > ul{
	display: block;
	margin-top:28px;
}
/* sub menu item styles */
ul#dropDownMenuText ul li{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #024c78; /* 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: #A2DBFD;
	border-bottom-color: #A2DBFD;
	border-left-color: #A2DBFD;
}
ul#dropDownMenuText ul li:hover{
	background-color:#fed653;
}
ul#dropDownMenuText ul li a{
	display:block;
	color: #024c78; /* 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:#fed653;
	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:#fed653;
	text-decoration: none;
}
.rightBorder {
	border-right: 1px solid #b2b2b2;
}
