/*
Image Cache (preloads mouseover graphics to avoid delay)
--------------------------------------------------------
*/

.menuCache {
	display:none;
}


/*
Menu Button elements
-------------------------
*/

#menuArea {
	display:block;
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 20px 0px;
	width: 690px;
	height: 22px;
	z-index: 100;
}

#menuArea a {
	display: block;
	position: absolute;
	top: 0px;
	height: 22px;
	text-decoration: none;
	cursor: pointer;
}

#menuArea a span.menuHeading {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
	text-align: center;
}

#menuArea dl {
	display: none;
}

#menuArea a.MenuOn {
	background-color: #F5E4BA;
}
#menuArea a.MenuOn .menuHeading {
	color: #323232;
}


#menuArea a.MenuOff {
	background-color: #323232;
}
#menuArea a.MenuOff .menuHeading {
	color: #ffffff;
}

#menuArea a.MenuOver {
	background-color: #9e916f;
}

#menuArea a.MenuOver .menuHeading {
	color: #ffffff;
}

/*
Drop-down menu elements
-----------------------
*/

#dropDownMenu {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 12px 0px;
	position: absolute;
	width: 198px;
	left: 0px;
	top: 23px;
	z-index: 200;
	visibility: hidden;
	font-size: 14px;
	line-height: 15px;
	font-weight: normal;
	color: #f4e5ba;
}

#dropDownMenu dl {
	display: block;
	margin: 0px 9px 0px 9px;
	padding: 5px 0px 0px 0px;
}

#dropDownMenu dd {
	display: block;
	margin: 0px 1px 0px 1px;
	padding: 1px 0px 1px 0px;
}

#dropDownMenu .dropDownSpacer {
	display: block;
	margin: 3px 6px 3px 6px;
	background-image: url("/images/common/menus/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: #ffffff;
	text-decoration: none;
}

#dropDownMenu dd a:visited {
	background-color: transparent;
	color: #ffffff;
	text-decoration: none;
}

#dropDownMenu dd a:hover {
	background-color: #9e916f;
	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: 2px 14px 2px 14px;
}






