/* TRANSMENU CSS FOR RHUK_PLANETFALL TEMPLATE*/
/* 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:fixed;
	overflow:hidden;
    z-index: 50;
    font-size: 10px;
	}
/* 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:auto;
	}
.transMenu.top .items {
    border:1px #000088 solid;
	}

/* each TR.item is one menu item */
.transMenu .item{
    padding: 3px;
    font-size: 11px;
	border:none;
	cursor:pointer;
	cursor:hand;
    background: url('../images/design/subMenu_color2.png');
    /*behavior: url("../js/iepngfix.htc");*/
	}
/* 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 {
	}

/* same concept as .background, but this is the sliver of shadow on the right of the menu. It's left, height, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowRight {

	}

/* same concept as .background, but this is the sliver of shadow on the bottom of the menu. It's top, width, and background are set by script. In IE5/mac, it uses a PNG */


/* this is the class that is used when the mouse is over an item. script sets the row to this class when required. */
/*couleur du Fond de BT sous menu*/
.transMenu .item.hover {/* Mozilla ignores crazy MS image filters, so it will skip the following */
    background-image:url('../images/design/subMenu_color3.png');
	-moz-opacity:.6;
	filter:alpha(opacity=60);
/*background: url('../images/design/subMenu_color3.png');*/
    /*behavior: url("../js/iepngfix.htc");*/
}



.transMenu .item.hover td {color:#000;}
/* 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 {
	margin-left:10px;
	}
.transMenu .item#active {
	color: #000;
	-moz-opacity:.6;
	filter:alpha(opacity=60);
	}
.transMenu .item#active.hover {
    background: url('../images/design/subMenu_color3.png');
	-moz-opacity:.6;
	filter:alpha(opacity=60);

	}
.transMenu .item td{
    color:#fff;
	font-weight:bold;
}
.transMenu .item:hover td{
	color:#000;
	font-weight:bold;
}

div#menu ul li a.mainlevel-trans:link, div#menu ul li a.mainlevel-trans:visited {
    text-decoration: none;
    padding: 0;
    margin: 0;
    display:block;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 3px;
    border-left: 1px #000 solid;
    cursor:pointer;
    text-align:center;
}

div#menu ul li a.mainlevel-trans:hover {
   color:#000;
   font-weight:bold;
}

a.mainlevel_active-trans, a.mainlevel_active-trans:visited {
   
    text-decoration: none;
    padding: 0;
    margin: 0;
    display:block;
    padding-top: 20px;
    padding-bottom: 3px;
    cursor:pointer;
    font-size:10px;
}
a.mainlevel_active-trans:hover {
  color:#000;
}
/* End added */

