/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
.reveal-modal-bg { 
	position: fixed; 
	height: 100%;
	width: 100%;
	background: #273A64;
	background: rgba(215, 210, 203, .7);
	z-index: 300;
	display: none;
	top: 0;
	left: 0; 
}
.reveal-modal {
	visibility: hidden;
	top: 100px; 
	left: 50%;
	margin-left: -250px;
	width: 400px;
	background: #eee no-repeat -200px -80px;
	position: absolute;
	z-index: 301;
	padding: 30px 40px;
	border:10px solid #4E5857;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow:  0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow:  0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.reveal-modal.small{ width: 200px; margin-left: -140px;}
.reveal-modal.medium{ width: 400px; margin-left: -240px;}
.reveal-modal.large{ width: 600px; margin-left: -340px;}
.reveal-modal.xlarge{ width: 800px; margin-left: -440px;}
.reveal-modal .close-reveal-modal {
	font-size: 22px;
	line-height: .5;
	position: absolute;
	top: 11px;
	right: 8px;
	color: #888;
	text-shadow: 0 -1px 1px rbga(0,0,0,.6);
	font-weight: bold;
	cursor: pointer;
} 
.reveal-modal .close-reveal-modal:hover {
	color: #ccc;
} 
.reveal-modal h2 {padding-left:24px; background:url(../images/struttura/warning-16px.png) 0 4px no-repeat;margin-bottom:10px;}

/*
		
	NOTES
	
	Close button entity is &#215;
	
	Example markup
	
	<div id="myModal" class="reveal-modal">
		<h2>Awesome. I have it.</h2>
		<p class="lead">Your couch.  I it's mine.</p>
		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ultrices aliquet placerat. Duis pulvinar orci et nisi euismod vitae tempus lorem consectetur. Duis at magna quis turpis mattis venenatis eget id diam. </p>
		<a class="close-reveal-modal">&#215;</a>
	</div>
	
	*/
	
	
	
	
	
	
	
	
	
	
	

/* === CUSTOM
======================================================*/
.reveal-modal {
    visibility: hidden;
    top: 100px;
    left: 46%;
    margin-left: -250px;
    width: 570px;
    position: absolute;
    z-index: 301;
    padding: 20px 30px;
    border: 0px solid #4E5857;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    background: #FFF;
}
.reveal-modal h2 {
	padding-left: 0px;
    background: none;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
}
.reveal-modal .close-reveal-modal {
    top: 9px;
    right: 10px;
}
