﻿/* 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;
	text-align:left;
	}

/* each TR.item is one menu item */
.customenu td {
    font-size:10px;
}

.customenu .item {
    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=40);
	}

/* 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=40);
	}

/* 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:#DEDEDE;
	color:#FFFF00;
}

/* 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;
}


.menuTab {
	margin:0px;
	padding:0px;
}

.menuCell, .menuCellMain  {
	width: 190px;
	font-weight:bold;
	text-align:center;
	background-color:inherit;
	padding:4px;
}



.menugroup a:link, .menugroup a:visited {
	font-family:Verdana;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	background-color: #E60003;
	display: block;
	padding-top: 5px;
	padding-bottom: 6px;
	padding-left: 7px;
	padding-right: 7px;
	cursor: pointer;
}

.menugroup a:hover, .menugroup a:active {
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	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: #E60003;
  background-color:none;
}
#wrap {
	border:0px;
	margin:0px;
	padding: 0px;
	background-color:none;
}
#menu {
	font-weight: bold;
	color: #FFFFFF;
	text-align: left;
	margin: 0px;	
	width: 100%;

}

.menuCell a {
    font-family:verdana;
	font-size:14px;
	text-decoration:none;
    font-weight:bold;
    color:#FFFFFF;
    }
.menuCell a.hover, .menuCellMain a.hover {
    font-family:verdana;
	font-size:14px;
	color: #003366;
	border-bottom :1px dashed #FF0000;
	padding:5px;
	padding-bottom:2px;
}
 
.menuCell a:active, .menuCellMain a:active {
    font-family:verdana;
	font-size:14px;
	color: #FFFFFF;
	padding:3px;
}
.menuCellMain {
    font-family:verdana;
	font-size:14px;
	background-color:#FFF;
}

.menuCellMain a{
    font-family:verdana;
	font-size:14px;
	color:#003366;
}

#img {
    vertical-align:bottom;
    }

#subnav {
    font-size:10px;
    margin-bottom:2em;
    }
#subnav a {
    color:#FB3B00;
    margin-right:1em;
    }
#subnav span {
    color:silver;
    margin-right:1em;
    }
