/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/dd_valid.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
.menu
	{
	position:absolute;
	width:960px;
	height:23px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight: bold;
	z-index:100;
 	left: 50%;
 	margin-top: 235px;
 	margin-left: -480px;
	}

.menu ul li a, .menu ul li a:visited
	{
	display:block;
	text-decoration:none;
	/* color: rgb(0,0,0); */ /* COLORE DEL TESTO "A RIPOSO" */
	width:130px;
	height:22px;
	text-align:center;
	/* color: rgb(255,255,255); */
	/* border:1px solid rgb(255,255,255); */
	/* background: rgb(0,0,200); */ /* COLORE DELLO SFONDO DELLE VOCI PRINCIPALI */
	background: rgb(238,238,238);   /* COLORE DELLO SFONDO DELLE VOCI PRINCIPALI */
	line-height:20px;
	font-size:12px;
	overflow:hidden;
	}

.menu ul
	{
	padding:0;
	margin:0;
	list-style: none;
	}

.menu ul li
	{
	float:left;
	position:relative;
	}

.menu ul li ul
	{
	display: none;
	}

/* specific to non IE browsers */

/* COLORE DELLE VOCI MENU PRINCIPALI QUANDO IL MOUSE VI PASSA SOPRA */
.menu ul li:hover a
	{
	color: rgb(100,100,100);
	/* background: rgb(72,118,255); */
		background: rgb(225,225,225);
	border-bottom: 4px solid rgb(255,128,0);
	}

.menu ul li:hover ul
	{
	display:block;
	position:absolute;
	top:26px;
	left:0;
	width:130px;
	}

/* COLORE DEL SOTTO-MENU CHE POSSIEDE A SUA VOLTA DEI SOTTO-SOTTO-MENU */
.menu ul li:hover ul li a.hide
	{
	/* color: rgb(255,255,255); */
	}

/* COLORE DEI SOTTO-MENU E DEI SOTTO-SOTTO-MENU QUANDO IL MOUSE VI PASSA SOPRA */
.menu ul li:hover ul li:hover a.hide
	{
	/* color: rgb(255,255,255); */
	}

.menu ul li:hover ul li ul
	{
	display: none;
	}

/* DEFINIZIONE DELLE VOCI SOTTO-MENU */
.menu ul li:hover ul li a
	{
	display:block;
	/* color: rgb(255,255,255); */
	background: rgb(238,238,238);
	border-bottom: 0;
	}

.menu ul li:hover ul li a:hover
	{
	/* color: rgb(255,255,255); */
	background: rgb(255,255,255);
	border-bottom: 4px solid rgb(0,0,220);
	height:18px;
	}

.menu ul li:hover ul li:hover ul
	{
	display:block;
	position:absolute;
	left:130px;
	top:0;
	}

.menu ul li:hover ul li:hover ul.left
	{
	left:-130px;
	}
