/*
Image Cache (preloads mouseover graphics to avoid delay)
--------------------------------------------------------
*/

.menuCache {
	display:none;
}


/*
Menu Button elements
-------------------------
*/

#menuArea {
	display:block;
	position: absolute;
	top: 58px;
	left: 287px;
	width: 578px;
	height: 32px;
	z-index: 90;
	text-align: left;
}

#menuArea a {
	display: block;
	position: absolute;
	height: 32px;
	background-image: url("/images/common/menu/menu_line.gif");
	background-position: top left;
	background-repeat: no-repeat;
}

#menuArea a .menuHeading {
	display: block;
	position: absolute;
	top: 2px;
	left: 6px;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-size: 11px;
	line-height: 13px;
	font-weight: bold;
	text-transform: uppercase;
	
}

#menuArea dl {
	display: none;
}

/* Menu on */

#menuArea a.MenuOn {
	background-color: #006838;
	color: #ffffff;
	text-decoration: none;
}

/* Menu off */

#menuArea a.MenuOff {
	background-color: transparent;
	color: #ffffff;
	text-decoration: none;
}

/* Menu over */

#menuArea a.MenuOver {
	background-color: #ffffff;
	color: #006838;
	text-decoration: none;
}





/*
Drop-down menu elements
-----------------------
*/

#dropDownMenu {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 12px 0px;
	position: absolute;
	width: 192px;
	left: 0px;
	top: 90px;
	z-index: 100;
	visibility: hidden;
	font-size: 11px;
	line-height: 13px;
	font-weight: normal;
	color: #666666;
}

#dropDownMenu dl {
	display: block;
	margin: 0px 7px 0px 7px;
	padding: 5px 0px 0px 0px;
	border-top: 1px solid #ffffff;
}

#dropDownMenu dd {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

#dropDownMenu .dropDownSpacer {
	display: block;
	margin: 3px 6px 3px 6px;
	background-image: url("/images/common/menu/dotted_divider.gif");
	background-repeat: repeat-x;
	height: 1px;
	font-size: 1px;
	line-height: 1px;
	overflow: hidden;
}

#dropDownMenu dd a {
	display: block;
	position: relative;
	background-color: transparent;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	color: #006838;
	text-decoration: none;
}

#dropDownMenu dd a:visited {
	background-color: transparent;
	color: #006838;
	text-decoration: none;
}

#dropDownMenu dd a:hover {
	background-color: #006838;
	color: #ffffff;
	text-decoration: none;
}

#dropDownMenu .alignLeft dd a {
	text-align: left;
}

#dropDownMenu .alignRight dd a {
	text-align: right;
}

#dropDownMenu dd a span {
	display: block;
	padding: 3px 5px 3px 5px;
}








