/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
	.reveal-modal-bg { 
		position: fixed; 
		height: 100%;
		width: 100%;
		background: transparent url('../images/modulOverlay.png');
		z-index: 1000000;
		display: none;
		top: 0;
		left: 0; 
		}
	
	.reveal-modal {
		visibility: hidden;
		top: 10px; 
		left: 50%;
		margin-left: -300px;
		width: 520px;
		min-height: 590px;
		background-color: #fff;
		position: absolute;
		z-index: 1010000;
		/* padding: 20px; */
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-moz-box-shadow: 0 0 10px rgba(0,0,0,.7);
		-webkit-box-shadow: 0 0 10px rgba(0,0,0,.7);
		box-shadow: 0 0 10px rgba(0,0,0,.7);
		}
		
	.reveal-modal.small 		{ width: 200px; margin-left: -100px;}
	.reveal-modal.medium 		{ width: 400px; margin-left: -200px;}
	.reveal-modal.large 		{ width: 600px; margin-left: -300px;}
	.reveal-modal.xlarge 		{ width: 960px; margin-left: -480px;}
	
	.reveal-modal .close-reveal {
		font-size: 26px;
		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;
		} 

@media only screen and (min-width: 1280px) {

	.reveal-modal {
		min-height: 675px;
	}


	.reveal-modal.small 		{ width: 240px; margin-left: -120px;}
	.reveal-modal.medium 		{ width: 480px; margin-left: -240px;}
	.reveal-modal.large 		{ width: 720px; margin-left: -360px;}
	.reveal-modal.xlarge 		{ width: 1200px; margin-left: -600px;}
	
	.reveal-modal .close-reveal {
		top: 10px;
		font-size: 33px;
	}
	
}