/* 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;
	padding: 0px;
}

.transMenu.top .items {
	border-top:none;
	padding: 0px;
}

/* each TR.item is one menu item */
.transMenu .item {
    color:#fff;
    font-size:10px;
    font-family: Tahoma, Arial, 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;
	padding: 0px;
}

a.mainlevelmenunew:link, a.mainlevelmenunew:visited {
        font-family: Tahoma, Helvetica, sans-serif;
        display: block;
        width: 175px;
        height: 22px;
        border: 0px;
	text-align: center;
        margin: 1px 0px 0px 0px;
        padding: 5px 5px 2px 5px;
/*        background-color: #800000;
  */
	background-image: url(../../../newpx/button.gif); background-repeat: no-repeat;
      color: #fff;}
a.mainlevelmenunew:hover {color: #000;
        background-image: url(../../../newpx/buttonhilite.gif); background-repeat: no-repeat;
	text-decoration: none;}
a.sublevelmenunew:link, a.sublevelmenunew:visited {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 3px 0px 3px 5px;
	width: 165px;
	}
a.sublevelmenunew:hover {
	color: #fff;
	background-color: #400000;
	display: block;
	padding: 3px 14px 3px 5px;
	width: 165px;	}

a#active_menumenunew {display: block;
        background-color: #b66;
        color: #fff;
        padding: 12px 10px;
        text-decoration: none;
        }

