.wrap {
}
/* 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;
	width: 140px;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #999999;
}

.transMenu.top .items {
	border-top: none;
}

/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
/* each TR.item is one menu item */
.transMenu .item{
	margin: 0px;
	border: none;
	display: block; /* this is a hack for mac/ie5, whom incorrectly cascades the border properties of the parent table to each row */
	font-size: 11px;
	cursor: hand;
	cursor: hand;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: 6699cc;
}

.transMenu .item td {
	height: 13px;
	line-height: 13px;
	color: #FFFFFF;
}

.transMenu .item.hover {
	background: #6699cc;
}

.transMenu .item.hover td {
}


.transMenu .item#active {
	color: #FFFFFF;
	-moz-opacity: .6;
	background-color: #6699CC;
}

.transMenu .item#active.hover {
	color: #FFFFFF;
	background-color: #6699CC;
}


/* For first level menu.*/
#wrap {
	margin: 0px;
	padding: 0px;
}

#menu {
	margin: 0px;
	padding: 0px;
}

#menu td {
	width: 100px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#mbttransmenu {
	margin: 0px;
	padding: 0px;
	width: auto;
}

a.mainlevel-trans:link, a.mainlevel-trans:visited {
	clear: both;
	display: block;
	white-space: nowrap;
	color: #FFFFFF;
	text-decoration: none;
	line-height: 23px;
	height: 23px;
	width: auto;
	text-align: center;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	margin-top: 1px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 5px;
	padding-left: 5px;
}

a.mainlevel-trans:hover {
	background-color: #999999;
}

a.mainlevel_active-trans, a.mainlevel_active-trans:active {
	clear: both;
	width: auto;
	margin: 0;
	display: block;
	white-space: nowrap;
	border-right: 1px solid #FFFFFF;
	line-height: 33px;
	height: 33px;
	color: #FFFFFF;
	text-decoration: none;
}

a.mainlevel_active-trans:hover {
	color: #FFFFFF;
}

/* End added */
