/* this is the clipping region for the menu. it's width and height get set by script, depending on the size of the items table */
.customenu {
	position:absolute;
	overflow:hidden;
	left:-1000px;
	top:-1000px;
    font-size:8px;
	}

/* this is the main container for the menu itself. it's width and height get set by script, depending on the size of the items table */
.customenu .content {
	position:absolute;
	}

/* this table comprises all menu items. each TR is one item. It is relatively positioned so that the shadow and background transparent divs can be positioned underneath it */
.customenu .items {
	position:relative;
	left:0px; top:0px;
	z-index:2;
	}

.customenu.top .items {
	border-top:none;
	}

/* each TR.item is one menu item */
.customenu td {
    font-size:10px;
}

.customenu .item {
    color:#000066;
    font-size:10px;
    font-family:Verdana,sans-serif;
    font-weight: bold;
    text-decoration:none;
    text-transform: uppercase;
	/* this is a hack for mac/ie5, whom incorrectly cascades the border properties of the parent table to each row */
	border:none;
	cursor:pointer;
	cursor:hand;
	}

/* this DIV is the semi-transparent white background of each menu. the -moz-opacity is a proprietary way to get transparency in mozilla, the filter is for IE/windows 5.0+. */
/* we set the background color in script because ie mac does not use it; that browser only uses a semi-transparent white PNG that the spacer gif inside this DIV is replaced by */
.customenu .background {
	position:absolute;
	left:0px; top:0px;
	z-index:1;
	-moz-opacity:.8;
	filter:alpha(opacity=80);
	}

/* same concept as .background, but this is the sliver of shadow on the right of the menu. It's left, height, and background are set by script. In IE5/mac, it uses a PNG */
.customenu .shadowRight {
	position:absolute;
	z-index:3;
	top:3px; width:0px;
	-moz-opacity:.4;
	filter:alpha(opacity=60);
	}

/* same concept as .background, but this is the sliver of shadow on the bottom of the menu. It's top, width, and background are set by script. In IE5/mac, it uses a PNG */
.customenu .shadowBottom {
	position:absolute;
	z-index:1;
	left:3px; height:2px;
	-moz-opacity:.4;
	filter:alpha(opacity=80);
	}

/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
.customenu .item.hover {
	background:#000066;
	  color:#000066;
}

/* this is either the dingbat that indicates there is a submenu, or a spacer gif in it's place. We give it extra margin to create some space between the text and the dingbat */
.customenu .item img {
	margin-left:5px;
	}


.menugroup a:link, .menugroup a:visited {
  font-size: 11px;
  font-weight: bold;
  color: #FFF;
  text-decoration: none;
  background-color: #000066;
  display: block;
  padding-top: 5px;
  padding-bottom: 6px;
  padding-left: 7px;
  padding-right: 7px;
  cursor: pointer;
}

.menugroup a:hover, .menugroup a:active {
  font-size: 11px;
  font-weight: bold;
  color: #000066;
  text-decoration: none;
  background-color: #000;
  display: block;
  padding-top: 5px;
  padding-bottom: 6px;
  padding-left: 7px;
  padding-right: 7px;
  cursor: pointer;
}

#menu .hover {
  color: #666666;
  background-color: #F4F9FF;
}
#wrap {
	border:1px solid #AEAED2;
	margin: 3px auto 0px;
	padding: 0px;
	width: 980px;
	background-color: #F4F9FF;



    }
#menu {
	padding:4px 0;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: white;
	font-weight: bold;
	color: #FFFFFF;
	text-align: left;
	background-color: #B7B7B7;
	margin: 0px;
	background-image: url(../images/skinh2cu/bg_menu.png);
	background-repeat: repeat;
	background-position: left bottom;
	text-transform: uppercase;








    }
#menu a {
    padding:4px 10px;
    text-decoration:none;
    font-weight:bold;
    color:#000066;
    }
#menu a.hover {
	background:#F4F9FF;
	color: #666666;
    }
#img {
    vertical-align:bottom;
    }

#subnav {
    font-size:10px;
    margin-bottom:2em;
    }
#subnav a {
    color:#666666;
    margin-right:1em;
    }
#subnav span {
    color:#000066;
    margin-right:1em;
    }
