#navigation {
	position:relative;
	top: 85px;
	right: 2px;
	float:right;
	background: transparent url("immagini/menu.jpg") repeat-x;	
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 20px;
}

#nav a {
	display: block;
	width: 100%;
	font-family: Verdana, Helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 10px;
	text-decoration: none;
	text-align: center;
	color: #FFFFFF;
}

#nav li { /* all list items */
	float: left;
	width: 110px;
}



#nav li ul li{
	width: 177px;
}
#nav li ul li a{
	background: white;
	width:100%;
	height:100%;
	border-right: 1px solid black;
	border-left: 1px solid black;
	border-bottom: 1px solid black;
	text-align: left;
	color: #202020;
}
/*
a.a1 {
	border-top: 1px solid black;
}
*/
#nav li ul { /* second-level lists */
	width: 177px;
	position: absolute;
	border-top: 1px solid black;
	/*background: orange;*/
	/*width: 20em;*/
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
#nav a:hover 
{ 
	color: #AFAFAF;
}
#nav li ul li a:hover{
	background-color: #000C75;
	color: #FFFFFF;
	line-height: 20px;
}
#nav a:active 
{ 
	color: #AFAFAF;
}
#nav li ul li a:active{
	background-color: #E6E9FC;
	color: #000C75;
	font: normal bold 10px Verdana, Helvetica, sans-serif;
	line-height: 20px;
}

