/* clipping region for the menu. width and height get set by script */
.transMenu {
	position:absolute;
	overflow:hidden;
	left:-1000px;
	top:-1000px;
	}
/* main container */
.transMenu .content {
	position:absolute;
	}
/* this table comprises all menu items. each TR is one item */
.transMenu .items {
	position:relative;
	left:0px; top:0px;
	line-height: 2em;
	height: 2em;
	width: auto;
	z-index:2;
	}
.transMenu.top .items {
	border-top:none;
	}
/* each TR.item is one menu item */
.transMenu .item  { text-indent: 1em; color: #EFE6EF; font-size: 1.3em; font-family: "century gothic", avantgarde, "avant garde", futura, "futura book", "futura maxi book", "microsoft sans serif", arial, helvetica, "trebuchet ms", univers, geneva, sans-serif; height: 2em; line-height: 2em; text-decoration: none; 
	/* hack for mac/ie5 */
border: none; cursor: pointer; cursor: hand;  }
/* semi-transparent white background of each menu */
.transMenu .background {
	position:absolute;
	left:0px; top:0px;
	z-index:1;
	-moz-opacity:.85;
	filter:alpha(opacity=85);
	}
/* shadow right */
.transMenu .shadowRight {
	position:absolute;
	z-index:3;
	top:0px; width:0px;
	-moz-opacity:0;
	filter:alpha(opacity=0);
	}
/* shadow bottom */
.transMenu .shadowBottom {
	position:absolute;
	z-index:1;
	left:0px; height:0px;
	-moz-opacity:0;
	filter:alpha(opacity=0);
	}
/* mouse over an item */
.transMenu .item.hover  { color: #650c66; background: #EFE6EF }
/* dingbat or spacer gif */
.transMenu .item img {
	margin:0 .5em 0 -0.5em;
	}