/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
	.reveal-modal-bg { 
		position: fixed; 
		height: 100%;
		width: 100%;
		background: #000;
		background: rgba(0,0,0,0.7);
		z-index: 9999;
		display: none;
		top: 0;
		left: 0; 
		}
	
	.reveal-modal {
		visibility: hidden;
		top: 150px; 
		left: 50%;
		margin-left:-250px;
		width: 450px;
		background:#e6e6e6;
		position: absolute;
		z-index: 99999;
		padding:25px 25px 70px 25px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px; border:1px solid #fff;
		
		}
		
	.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: 30px;
		line-height: .5;
		position: absolute;
		top: 8px;
		right: 11px;
		color: #23c3ff;
		text-shadow: 0 -1px 1px rbga(0,0,0,.6);
		font-weight: bold;
		cursor: pointer; color:#23c3ff; 
		} 
		.reveal-modal .close-reveal-modal:hover{ text-decoration:none;}
		
		
		
		
		.reveal-modal1 {
		visibility: hidden;
		top: 50px; 
		left: 50%;
		margin-left:-250px;
		width: 550px;
		background:#fff url(../images/chess-icon.png) bottom right no-repeat;
		position: absolute;
		z-index: 99999;
		padding:10px 25px 20px 25px;
		 border:1px solid #ccc;
		
		}
		
	.reveal-modal1.small 		{ width: 200px; margin-left: -140px;}
	.reveal-modal1.medium 		{ width: 400px; margin-left: -240px;}
	.reveal-modal1.large 		{ width: 600px; margin-left: -340px;}
	.reveal-modal1.xlarge 		{ width: 800px; margin-left: -440px;}
	
	.reveal-modal1 .close-reveal-modal {
		font-size: 30px;
		line-height: .5;
		position: absolute;
		top:-8px;
		right:-8px;
				text-shadow: 0 -1px 1px rbga(0,0,0,.6);
		font-weight: bold;
		cursor: pointer; color:#23c3ff; 
		} 
		.reveal-modal1 .close-reveal-modal:hover{ text-decoration:none;}
		.reveal-modal1 h3{ font-size:18px; text-transform:uppercase; color:#23c3ff; margin:20px 0; font-weight:bold;}
	
	
	
