/* 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 */
#TransMenu0.transMenu {
	position:absolute;
	overflow:hidden;
	left:-1000px;
	top:-1000px;
	text-align:left;
	margin-left:8px;
	margin-top:-1px;
	}
	
#TransMenu1.transMenu,
#TransMenu2.transMenu,
#TransMenu3.transMenu,
#TransMenu4.transMenu,
#TransMenu5.transMenu {
	position:absolute;
	overflow:hidden;
	left:-1000px;
	top:-1000px;
	text-align:left;
}

#TransMenu1.transMenu {margin-left:7px;	margin-top:-3px;}
#TransMenu2.transMenu {margin-left:8px;	margin-top:-3px;}
#TransMenu3.transMenu {margin-left:8px;	margin-top:-3px;}
#TransMenu4.transMenu {margin-left:7px;	margin-top:-3px;}
#TransMenu5.transMenu {margin-left:8px;	margin-top:-3px;}

/* 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 */
#TransMenu0.transMenu .content {
	position:absolute;
	background:url(../js/images/bottom-curve.gif) no-repeat left bottom;
	}
	
#TransMenu1.transMenu .content{position:absolute;background:url(../js/images/bottom-curve1.gif) no-repeat left bottom;}
#TransMenu2.transMenu .content{position:absolute;background:url(../js/images/bottom-curve2.gif) no-repeat left bottom;}
#TransMenu3.transMenu .content{position:absolute;background:url(../js/images/bottom-curve3.gif) no-repeat left bottom;}
#TransMenu4.transMenu .content{position:absolute;background:url(../js/images/bottom-curve4.gif) no-repeat left bottom;}
#TransMenu5.transMenu .content{position:absolute;background:url(../js/images/bottom-curve5.gif) no-repeat left bottom;}



/* 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 */
/*the story*/
#TransMenu0.transMenu .items {
	position:relative;
	left:0px; top:0px;
	background:#B1CA47;
	z-index:5;
	-moz-opacity: 1;
	border-top:none;
	/*border-left:1px solid #B1CA47;
	border-right:1px solid #B1CA47;*/
	border-bottom:none;
	width:60px;
	/*filter:alpha(opacity=60);*/
	}
	
#TransMenu1.transMenu .items,
#TransMenu2.transMenu .items,
#TransMenu3.transMenu .items,
#TransMenu4.transMenu .items,
#TransMenu5.transMenu .items {
	position:relative;
	left:0px; top:0px;
	background:#B1CA47;
	z-index:5;
	-moz-opacity: 1;
	border-left:1px solid #fff;
	border-right:1px solid #fff;
	border-bottom:none;
	padding:0;
	/*filter:alpha(opacity=60);*/
	}
	
#TransMenu1.transMenu .items{width:97px;}
#TransMenu2.transMenu .items{width:68px;}
#TransMenu3.transMenu .items{width:56px;}
#TransMenu4.transMenu .items{width:126px;}
#TransMenu5.transMenu .items{width:138px;}


/* each TR.item is one menu item */
.transMenu .item {
	font-size:11px;
	font-family: Arial, Helvetica, sans-serif; 
	color: #FFFFFF;
	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;
	}

/* 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 */
.transMenu .background {
	position:absolute;
	left:0px; top:0px;
	z-index:4;
	/*color:#ffffff;*/
	-moz-opacity: 1;
	/*filter:alpha(opacity=10);*/

	}

/* 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 */
.transMenu .shadowRight {
	position:absolute;
	z-index:5;
	top:0px; width:0px;
	-moz-opacity: 1;
	/*filter:alpha(opacity=0);*/
	}

/* 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 */
.transMenu .shadowBottom {
	position:absolute;
	z-index:4;
	left:0px; height:0px;
	-moz-opacity: 1;
	/*filter:alpha(opacity=0);*/
	}

/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
#TransMenu0.transMenu .item.hover {
	background:#9CB219;
	color: #fff;
	}
#TransMenu1.transMenu .item.hover,
#TransMenu2.transMenu .item.hover,
#TransMenu3.transMenu .item.hover,
#TransMenu4.transMenu .item.hover,
#TransMenu5.transMenu .item.hover {
	background:#9CB219;
	color: #fff;
	}

/* 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 */
.transMenu .item img {
	margin-left:0px;
	}