/* ================================================================ 
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/basic_dd.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.
=================================================================== */

.menu ul{/* remove the bullets, padding and margins from the lists */
	list-style-type:none;
	padding:0;
	margin:0px 0px 2px 0px; 
}

.menu li{/* make the top level links horizontal and position relative so that we can position the sub level */
	float:left;
	position:relative;
	z-index:100;
}

.menu table{/* use the table to position the dropdown list */
	position:absolute;
	border-collapse:collapse;
	z-index:80;
	left:-1px;
	top:25px;
}

.menu a, .menu :visited {/* style all the links */
	font-weight:bold;
	display:block;
	font-size:12px;
	width:180px;
	padding: 5px 5px 5px 5px;
	color:#ffffff;
	border-left:1px solid #ffffff;
	text-decoration:none;
	text-align:left;
}

.menu :hover{/* style the links hover */
	text-decoration:none;
	color:#444444;
	background:#999999;
}


.menu ul ul {/* hide the sub level links */
	visibility:hidden;
	position:absolute;
	width:130px;
	height:0;
}

.tendina{
	background:#999999;
	}
.tendina_trasp{
	background:none;
	}

.menu ul li:hover ul,/* make the sub level visible on hover list or link */
.menu ul a:hover ul{
	visibility:visible;
}