/* 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 {
	LEFT: -1000px; 
	OVERFLOW: hidden; 
	POSITION: absolute; 
	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;
	text-indent:5px;
	width:10px;
	
	}
.transMenu.top .items {
	border-top: none;
	}

/* each TR.item is one menu item */
/* definisce gli elementi della tendina*/
.transMenu .item{
	/*color: #666666;
	background-color: #F5F5F5;*/
   font-size:12px;
   text-decoration:none;
	font-weight:bold;
   margin: 0px;
	display:block;
	/* 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;*/
	/*border-bottom: 1px dotted #8e001c;*/
	}

	
/* 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 {
	position:absolute;
	left:0px;
	top:0px;
	z-index:1;
	/*-moz-opacity:.7;
	filter:alpha(opacity=70)*/
	}

/* 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 {
	position:absolute;
	z-index:3;
	top:3px; 
	width:2px;
	/*-moz-opacity:.4;
	filter:alpha(opacity=40);*/
	}

/* 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 */
.transMenu .shadowBottom {
	position:absolute;
	z-index:3;
	left:3px; 
	height:2px;
	/*-moz-opacity:.4;
	filter:alpha(opacity=40);*/
	}

/* 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 {
/*border-top:2px solid #ffb300;
border-bottom:2px solid #ffb300;*/
background-color:#cc0000;
color:#fff;
}

/*questo sotto è il colore del rollover della cella degli items in rollover*/
.transMenu .item.hover td {
/*border-top:2px solid #ffb300;
border-bottom:2px solid #ffb300; */
}

/* 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 {
	/*BACKGROUND: #000;
	COLOR:red;*/
	}
.transMenu .item#active.hover {
	/*COLOR: red;
	background:#000;*/
	}
/* questo sotto è il font del sottomenu(item) */	
.transMenu .item td{
	/*color:#8e001c;*/
	font-size: 12px;
	/*font-weight:bold;*/
}
/* For first level menu.*/
/* tutte le voci principali del menu. */
#wrapMenu {
   margin: 0px;
   padding: 0px;
  /* background-color: #eee;*/
	/*border-left: 1px solid #8e001c;*/
   height: 30px;
   text-align: center;

}
#topMenu {
}

a.mainlevel-trans:link, a.mainlevel-trans:visited {
   font-weight: bold;
	font-family:  Arial, Helvetica, sans-serif;	
   text-decoration:none;
   font-size: 14px;
   color: #fff;
	background: inherit;
 white-space:nowrap;
   line-height: 30px;
   display: block;
   height: 30px;
	max-height: 30px;
   width:auto;
   margin: 0px;
   padding: 0px 16px 0px 16px;
	
}


a.mainlevel-trans:hover {
	BACKGROUND: #cc0000; COLOR:#eee; 
	/*-moz-border-radius: 5px;*/
}



a.mainlevel_active-trans, a.mainlevel_active-trans:visited {
   text-decoration:none;
   font-size: 10px;
   white-space:nowrap;
   line-height: 16px;
   display: block;
   height: 16px;
   width:auto;
   margin: 0px;
   padding: 0px 10px 0px 10px;
}
a.mainlevel_active-trans:hover {
background-color: #cc0033;
  color:#FFFFFF;
}
/* End added */



/*my trans menu*/

#mytoolbar ul {
margin: 0; 
padding: 0; 
list-style-type: none;
list-style-image: none;
position: absolute;
width: 770px;
top: 0px;
left: 0px;

 }
	
#mytoolbar li {
float: left; 
/*width: 100px;*/
margin: 0 0 0 0px;
}

#mytoolbar li#logolinkhome {
width: 50px;
}

#mytoolbar li.short{
width: 83px;
}

#mytoolbar li.long{
width: 108px;
}

#mytoolbar li#logolinkhome a {
display: block;
width: 100%;
text-align: center;
padding: 2px 0px 1px 0px;
}

#mytoolbar li a {
display: block;
width: 100%;
text-align: center;
padding: 10px 0 7px 0px;
color: #004F68;
background: transparent;
font-size: 13px;
font-weight: bold;
/*border: 1px solid;
border-color:transparent;*/
}

#mytoolbar li a:hover{
	background-color:  #CC0033;
	border: 1px solid white;
	color: White;
	text-decoration: none;
	background-image: url(hover_transparent.png);
	background-position: top;
	background-repeat: repeat-x;
}
