/****************************************/
/*           MENU Styles                */
/****************************************/
/*************  STATIC MENU *************/
.StaticMenuStyle /*Overall Menu Look (top bar)*/
{
	font: Arial;
	font-family:Arial;
	font-size: 8pt;
	color: #FFFFFF;
	text-align: center;
/* l & r border (1px) needed so border size between menu items appear the same width */				
	border-left: solid .01em #000066; 
	border-right: solid .01em #000066;
}

.StaticMenuItemStyle /* TOP BAR - Individual Menu Items Look */
{
	color: #FFFFFF;
	background-color: #000066;
	text-align: center;
	height: 50px;
	padding: 0px;
	margin: 0px;
	width: 147px;
	  /* adjusted width to allow borders look via background set in banner_nav */
/* include t & l border with same background color & width as set in .StaticMenuHoverStyle to keep text from appearing to move between hover */
	border-top: solid .01em #000066;
	/*border-left: solid .01em #000066;*/
	/*z-index: 0;*/
}
.StaticMenuItemStyle a {
	color: #FFFFFF;
	text-decoration: none;
}
.StaticMenuItemStyle a:link {
	color: #FFFFFF;
	text-decoration: none;
}
.StaticMenuItemStyle a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
.StaticMenuItemStyle a:hover 
{
	color: #FFFFFF;
	text-decoration: none;
}
.StaticMenuItemStyle a:active {
	color: #FFFFFF;
	text-decoration: none;
}

.StaticMenuHoverStyle /* TOP BAR - Look of Individual Top-Level Menu Items on HOVER */
{
	font: Arial;
	font-family:Arial;
	font-size: 8pt;
	color: #000066;
	background-color: #8fa8d9;
	text-align: center;
	/* include border top & left with different color to override banner_nav setting to give minor 3d effect plus, text will appear to move if missing*/
	border-top: solid .01em #000066; 
	border-left: solid .01em #000066;
	border-right: solid .01em #000066;
	/* DO NOT SET border-bottom */
}

/*************  DYNAMIC MENU *************/
.DynamicMenuStyle /* DropDown Menu Items Look*/
{
	font: Arial;
	font-family:Arial;
	font-size: 8pt;
	color: #FFFFFF;
	text-align: center;
	border-top: solid 1px #000066; /*top border in first cell of ddm */
	border-bottom: solid 1px #000066; /*bottom border in last cell of ddm - for Opera */
	padding: 0px;
	margin: 0px;
}

.DynamicMenuItemStyle /*Individual DropDown Menu Items Look*/
{
	color: #000066;
	background-color: #ffffff;
	text-align: left;
	border-left: solid 1px #000066; 
	border-right: solid 1px #000066; 
	border-bottom: solid 1px #000066;  
	padding: 0px;
	margin: 0px;
	width: 147px;
	z-index: 103; /* added 12/28/2009 - IE8 & Opera fix (also for homepage over rotating image) */
}
.DynamicMenuItemStyle a {
	color: #000066;
	text-decoration: none;
	display: block; /* This and margin needed to block display the A link and not get an indent on the top line when margin is 2 px */
	margin: 2px;
}
.DynamicMenuItemStyle a:link {
	color: #000066;
	text-decoration: none;
}
.DynamicMenuItemStyle a:visited {
	color: #000066;
	text-decoration: none;
}
.DynamicMenuItemStyle a:hover 
{
	color: #000066;
	text-decoration: none;
}
.DynamicMenuItemStyle a:active {
	color: #000066;
	text-decoration: none;
}

.DynamicMenuHoverStyle /*Individual DropDown Menu Items Look on HOVER*/
{
	font: Arial;
	font-family:Arial;
	font-size: 8pt;
	background-color: #8fa8d9;
	text-align: left;
	/* no borders to be set here */
}