/*
	http://www.queness.com/preview/1047/easy-to-style-jquery-drop-down-menu-tutorial
*/

#menu_azioni ul {
	margin: 0; 
	padding: 0; 
	list-style: none;
	z-index: 5000; 
	position: absolute; 
	top: 0px;
	left: 0px; 
	float: left;
	display: none;
	border: 1px solid #1d6893;
	background: #b2e1ff; 
	/* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: -moz-linear-gradient(-45deg, #b2e1ff 0%, #66b6fc 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#b2e1ff), color-stop(100%,#66b6fc)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg, #b2e1ff 0%,#66b6fc 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg, #b2e1ff 0%,#66b6fc 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg, #b2e1ff 0%,#66b6fc 100%); /* IE10+ */
	background: linear-gradient(-45deg, #b2e1ff 0%,#66b6fc 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b2e1ff', endColorstr='#66b6fc',GradientType=1 ); /* IE6-8 fallback on horizontal gradient */
}	

#menu_azioni li {
	float: left; 
	display: block; 
	position: relative;
}

#menu_azioni a {
	display: block;
	width: 130px;
	padding: 2px;
	text-decoration:none; 
	text-align: left;
}

#menu_azioni a:hover {
	color: #00F;
}

/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html #menu_azioni ul {
	margin:0 0 0 -2px;
}
