#menu{
	width:950px;
	height:80px;
	background-image:url(/images/sfondo_menu.png);
	background-repeat:repeat-x;
}

#menu ul{
	margin: auto;
	padding:0;
	position: relative;
	display: block;
	height:55px;

}
		
#menu ul li{
	list-style:none;
	float: left;
	width:190px;
	height:55px;
	text-align:center;
	cursor:pointer;

/*background-color:#CCCCCC;*/
}

#menu ul li a{
	font-family:Trebuchet MS;
	font-size:18px;
	color:#FFF;
	text-decoration:none;
	cursor:default;
	text-align:left;
	z-index:1;

}

/*PRIMA LISTA SELEZIONATA*/
#menu ul li.sel{
	list-style:none;
	float: left;
	background-image:url(/images/sfondo_menu_sel.jpg);
	background-repeat:no-repeat;
	padding-top:18px;
	z-index:1;
	position:relative;

}

/*COMPORTAMENTO DELLA SECONDA LISTA QUANDO SELEZIONATA LA PRIMA LISTA*/
#menu ul li.sel ul li{
	visibility:visible;
	color:#FFFFFF;
	white-space:nowrap;
	width:905px;
	text-align:left;
}

#menu ul li.sel ul li a{
	font-family:Trebuchet MS;
	font-size:14px;
	color:#FFFFFF;
	text-decoration:none;
	cursor:pointer;
	position:relative;
	z-index:1;

}

#menu ul li.sel ul li a:hover{
	font-family:Trebuchet MS;
	font-size:14px;
	color:#FFFFFF;
	text-decoration:underline;
	cursor:pointer;
	position:relative;
	z-index:1;

}

#menu ul li.nonsel{
	list-style:none;
	float: left;
	padding-top:18px;

}

/*COMPORTAMENTO DELLA PRIMA LISTA NON SELEZIONATA AL HOVER.*/
#menu ul li.nonsel:hover{
	list-style:none;
	float: left;
	width:190px;
	background-image:url(/images/sfondo_menu_nosel.png);
	background-repeat:no-repeat;
	visibility:visible;
}
/*COMPORTAMENTO DELLA SOTTOLISTA AL HOVER SU UNA LISTA NON SELEZIONATA*/

#menu ul li.nonsel:hover ul li{
	list-style:none;
	float: left;
	width:905px;
	background-image:url(/images/sfondo_sottomenu_nosel_2.jpg);
	background-repeat:no-repeat;
	visibility:visible;
	padding-left:45px;
	text-align:left;
	color:#FFFFFF;
	position:relative;
	z-index:2;

}

#menu ul li.nonsel ul li a{
	font-family:Trebuchet MS;
	font-size:14px;
	color:#FFFFFF;
	text-decoration:none;
	cursor:pointer;
	position:relative;
	z-index:2;

}

#menu ul li.nonsel ul li a:hover{
	font-family:Trebuchet MS;
	font-size:14px;
	color:#FFFFFF;
	text-decoration:underline;
	cursor:pointer;
	position:relative;
	z-index:2;

}

/*SOTTOLISTA INVISIBILE INIZIALMENTE*/
#menu ul li ul{
	position: absolute;
	top: 55px;
	left: 0;
	visibility:hidden;
	z-index:2;
	
}