/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
	.reveal-modal-bg { 
		position: fixed; 
		/position: fixed; /*Estilo para que se vea bien en internet explorer*/
		
		
		margin-bottom:23px; 
		height: 100%;
		width: 100%;
		
		/margin-bottom:100px; /*Estilo para que se vea bien en internet explorer*/
		/height: 100%;/*Estilo para que se vea bien en internet explorer*/
		/width: 100%;/*Estilo para que se vea bien en internet explorer*/
		
		
		
		background: #000;
		background: rgba(0,0,0,.8);
		/background: #000;/*Estilo para que se vea bien en internet explorer*/
		/background: rgba(1,2, 3,.5);/*Estilo para que se vea bien en internet explorer* grado de opacidad*/
	
		
		z-index: 100;
		/z-index:20;
		display: none;
		top: 0;
		left: 0; 
		
		 
		}
	
	.reveal-modal {
		visibility: hidden;
		/visibility: hidden;
		top: 50px; 
		left: 50%;
		/top: 50px; /*Estilo para que se vea bien en internet explorer*/
		/left: 50%;/*Estilo para que se vea bien en internet explorer*/
		margin-left: -250px;
		width: 420px;
		background: #FFCC66  url(../../images/publico/ventana%20modal/modal-gloss.png) no-repeat -200px -20px;
		/background: #FFCC66 url(../../images/publico/ventana%20modal/modal-gloss.png) no-repeat -200px -20px;
		position: absolute;
		z-index: 101;
		
		
		padding: 30px 40px 34px;
		
	
		-webkit-border-radius: 5px;
		border-radius: 5px;
		-moz-box-shadow: 0 0 5px rgba(0,0,0,.4);
		-webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
		
		-box-shadow: 0 0 10px rgba(0,0,0,.4);
		
		
		
		/-moz-border-radius: 5px;
		/-webkit-border-radius: 5px;
		/border-radius: 5px;
		/-moz-box-shadow: 0 0 5px rgba(0,0,0,.4);
		/-webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
		
		/-box-shadow: 0 0 10px rgba(0,0,0,.4);
		
		}
		
	.reveal-modal.small 		{ width: 200px; margin-left: -140px;}
	
	
	.reveal-modal .close-reveal-modal {
		font-size: 22px;
		line-height: .5;
		position: absolute;
		top: 8px;
		right: 11px;
		color: #aaa;
		text-shadow: 0 -1px 1px rbga(0,0,0,.6);
		font-weight: bold;
		cursor: pointer;
		}
		
	
