/* 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;
	}

/* 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;
	text-align:center;
	}

/* 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:none;
}
.transMenu .item td
{
    border:none;
    padding:0px 10px 0px 10px;
    text-align:left; 
} 

 /* The actual text in the menu BAR */
#mtm_menu a {
	display: block;
	font-family:Arial;
	float: left;
	line-height: 26px;
    padding: 0px 10px 0px 10px;
    text-decoration:none;
    font-size: 12px;
    font-weight:bold;
    color:white;
    text-align:left;
    }
    
#mtm_menu a.hover {
}
    
/* A main bar item that is active*/    
#mtm_menu span.active a {
	display: inline;
    background-color: transparent;
}  

/* each TR.item is one menu item */
.transMenu .item 
{
    background-color:#DBDBDC;
    border:none;
    text-decoration:none;
    cursor: pointer; 
	cursor: hand; 
	color: #FFFFFF;
	font-family: Arial;
	font-size: 12px; 
	font-weight: bold;
	text-align:left;
}
/* menu child items */    
table.items tr.item td {
	color: #023B60;
	float: left;
	background-color:#DBDBDC;
	font-family: Arial;
	font-size: 12px;
	font-weight: bold;
	text-align:left;
	
}

table.items tr.item.hover td {
	color: #FFFFFF;
	float: left;
	background-color:#9B9CAB;
	font-family: Arial;
	font-size: 12px;
	font-weight: bold;
	text-align:left;
}
/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
.transMenu .item.hover {
	background-color: #9B9CAB;
}

/* 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 
{
    background-color:transparent;
	position:absolute;
	right:0px; 
	bottom:2px;
	top:0px;left:2px;
	z-index:1;
	-moz-opacity:8;
	filter:alpha(opacity=0);
	
	}




/* 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 
{
}
/********                Modify by DaoA           **********************************/
.anylinkcss{
visibility: hidden;
display:none;
}
DIV#NAVSUITE_TOPmenu {
	height: 30px;
	padding-bottom: 0px; 
	background-color: transparent;
}
/* When a main bar item is hover */
DIV#NAVSUITE_TOPmenu A:hover {
	background-color:transparent; 
}


/* Separator class*/
.sep
{
    width:9px;
    height:26px;
}
/* The menu table class. Use mainly for direction*/
.menuTable
{
    direction:ltr;
}
