/* 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.top .items {
	border: 1px solid #EDC553;
	/*border-bottom: none;*/
	/*width:150px;*/
	padding-left: 10px;
	padding-right: 10px;
}

/* each TR.item is one menu item */
.transMenu .item {
	color:#EDC553;
    font-size:12px;
    font : Verdana;
    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;
}


.transMenu a.sublevel:link,
.transMenu a.sublevel:active,
.transMenu a.sublevel:visited {
	color:#EDC553;
	text-decoration:none;
	text-transform: uppercase;
	font-size:12px;
	line-height: 28px;
	font : Verdana;
	text-align:center;
}


