/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
.reveal-modal-bg {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #000;
	background: rgba(0,0,0,.7);
	z-index: 100;
	display: none;
	top: 0;
	left: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: 10px;
	font-style: italic;
	line-height: 20px;
	font-weight: normal;
	color: #666;	
}
	
.reveal-modal {
	visibility: hidden;
	overflow: auto;
	margin-top: -500px;
	margin-left: -240px;
	left: 50%;
	width: 420px;
	height:160px; /*no es necesari*/
	position: absolute;
	z-index: 101;
	padding: 30px 40px 34px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 0 50px rgba(240,240,240,.9);
	-webkit-box-shadow: 0 0 50px rgba(240,240,240,.9);
	box-shadow: 0 0 50px rgba(240,240,240,.9);
	font-family: "Times New Roman", Times, serif;
	font-size: 13px;
	font-style: normal;
	font-weight: normal;
	line-height: 15px;
	background-color: #eee;
	background-image: url(images/modal-gloss.png);
	background-repeat: no-repeat;
	background-position: -200px -80px;
	text-align: left;
}
		
	.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 {
	position: absolute;
	height: 35px;
	width: 35px;
	right: -18px;
	top: -18px;
	background-image: url(images/close.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	cursor: pointer;
	z-index: 999;
} 
	
	/*-------------------------------------------------------------*/
	
	
