/* 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 */
.transMenu {
	position:absolute;
	overflow:hidden;
	left:-1000px;
	top:-1000px;
}

/* 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 */
.transMenu .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 */
.transMenu .items {
	position:relative;
	left:0px; top:0px;
	z-index:2;
}

.transMenu .items {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FF9933;
}
	
.transMenu.top .items {
	border-top:none;
}

/* each TR.item is one menu item */
.transMenu .item {
    color:#336;
    font-size:10px;
    font-family:sans-serif;
    text-decoration:none;
	/* 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;
}

.rootmenu {
	font-family: Tahoma;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 24px;
	background-attachment: fixed;
	background-color: #f18b26;
	width: 149px;
	text-transform: uppercase;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	text-align:center
}

.rootmenu a {
	border-right-style: none;
	text-decoration: none;
	color: #FFFFFF;
}

.submenu {
	font-family: Tahoma;
	font-size: 11px;
	font-weight: bold;
	color: #2e74aa;
	line-height: 23px;
	/*text-transform: capitalize;*/
	width: 147px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #FF9933;
	border-left-color: #FF9933;
	padding-left: 12px;
	text-decoration: none;
}
/* #003366 */


.submenu a:link, .submenu a:visited, .submenu a:active  {
	font-family: Tahoma;
	font-size: 11px;
	font-weight: bold;
	color: #2e74aa;
	line-height: 23px;
	/*text-transform: capitalize;*/
	text-decoration: none;
}

.submenu a:hover {
	color: #003366;
}

.bottom {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FF9933;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #FF9933;
	border-left-color: #FF9933;
	line-height: 23px;
}
