/* FINESTRA MODALE 
====================================================== */
/* STILI NECESSARI AL FUNZIONAMENTO CORRETTO */
html, body{
	margin: 0px;
	padding: 0px;
	height: 100%;
}
html.noScroll{
	overflow: hidden;
}
div#overlay div#messaggio {
	font-size:15px;
	font-weight:bold;
	height:200px;
	margin-left:30px;
	margin-top:140px;
	text-align:center;
	width:380px;
}

div#modalBoxOverlay{
	display: none;
	width: 100%;
	height: 1000px;
	top: 0;
	left: 0;
	z-index: 2000;
	position: absolute;
}
div#modalBoxOverlay{
	background-color: #002f70;
	filter: alpha(opacity=60); /* internet explorer */
	-khtml-opacity: 0.6;      /* khtml, old safari */
	-moz-opacity: 0.6;       /* mozilla, netscape */
	opacity: 0.6;           /* fx, safari, opera */
}	
#overlay{
	width: 440px;
	height: 318px;
	background: url('../img/bg_generico.png') 50% no-repeat;
	position: absolute;
	left: 50%;
	margin-left: -220px;
	/* top: 60px;
	margin:auto; */
	display: none;
	z-index: 3000;
}

a.btnChiudiModale{
	position: absolute;
	top: 30px;
	right: 30px;
	width: 60px;
	height: 16px;
	text-indent: -5000px;
	display: block;
	background: url('../img/btn_chiudi.png') top left no-repeat;
}
a.btnChiudiModale:hover{
	background: url('../img/btn_chiudi.png') 0 -16px no-repeat;
}