/* CSS Document */

.alert-overlay {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 4;
	background-color: #fff;
	-moz-opacity: 0.8;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.wrapper, .alert-box {
	width: 580px;
	height: 350px;
}
.wrapper {
	display: none;
	bottom: 50%;
	right: 50%;
	position: fixed; /* mantiene il box al centro durante ridimensionamento o scroll*/
	z-index:1002;
}
.alert-box {
	position: relative;	
	background:#333;
	top: 50%;
	left: 50%;
	padding:0;
	margin:0;
	text-align:center;
	/*
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
	border-radius: 10px 10px;
	*/
	-webkit-box-shadow: 0px 0px 10px 0px #666;
	box-shadow: 0px 0px 10px 0px #666; 
}

.alert-box .header-box {
	position: relative;
	background:#333;
	width:580px;

	height:80px;
	top: 0;
	left: 0;
	padding: 0px;
	margin:0;
	/*
	-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;
	*/
}


.alert-box .header-box .testo {
	position: absolute;	
	width:300px;
	min-height:30px;
	height:30px;
	top: 40px;
	left: 30px;
	color: #ffffff;
	
	text-align:left;
	font-size:14px;
	font-weight:normal;
}

.alert-box .text {
	position: relative;
	margin:20px auto 0 auto;
	/*overflow: auto;*/
	width: 540px;
	min-height:170px;
	height: 170px;
	text-align:left;
}

.alert-box .text .response-box {
	position:relative;
	float:left;
	width:530px;
	min-height:170px;
	height:170px;
	margin-left:10px;
	padding:0;
	overflow:auto;
	
	font-weight:normal;
	font-size:12px;
	color: #ffffff;
}

.alert-box .info {	
	position: absolute;
	bottom: 20px;
	left: 30px;
	width:400px;
	height:20px;
	text-align:left;
	font-size:9px;
	color:#fff;
}

.alert-box .close {	
	position: absolute;
	top: 20px;
	right: 20px;
	
	text-align:left;
	font-size:13px;
	font-weight:normal;
	
	color: #ffffff;
	background:#FF701F ;
	border-collapse:separate;
	height:28px;
	line-height:28px;
	padding: 2px 15px 3px 15px;
	border: none;
	text-decoration: none;
	cursor:pointer;
	/*-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;*/
}

.alert-box .close:hover {
	color: #333;
	background:#ffffff;
}


.alert-box .riprova {
	display:none;
	
	position: absolute;
	bottom: 20px;
	right: 20px;
	
	text-align:left;
	font-size:13px;
	font-weight:normal;
	color: #ffffff;
	background:#FF701F;
	border-collapse:separate;
	height:28px;
	line-height:28px;
	padding: 2px 15px 3px 15px;
	border: none;
	text-decoration: none;
	cursor:pointer;
	/*-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;*/
}

.alert-box .riprova:hover {
	color: #333;
	background:#fff;
}
