/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
	.reveal-modal-bg { 
		position: fixed; 
		height: 100%;
		width: 100%;
		background: #2b2a29;
		background: rgba(0,0,0,.8);
		z-index: 100;
		display: none;
		top: 0;
		left: 0;
		}
	
	.reveal-modal {
		visibility: hidden;
		border:1px solid #333;
		text-align:center;
		top: 80px; 
		left: 50%;
		margin-left: -440px;
		width: 800px;
		background-color:#fff;
		color:#2b2a29;
		font-size:14px;
		position: absolute;
		z-index: 101;
		padding: 30px 40px 34px;
		-moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
		-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
		-box-shadow: 0 0 10px rgba(0,0,0,.4);
		}
		
	.reveal-modal.small 		{ width: 250px; margin-left: -125px; margin-top:-125px;padding:0px;}
	.reveal-modal.medium 		{ width: 800px; height:auto ;margin-left: -402px;padding:0px 0px 0px 0px;}
	.reveal-modal.xmedium 		{ width: 800px; height:auto ;margin-left: -402px;padding:0px 0px 20px 0px;}
	.reveal-modal.large 		{ width: 1040px; height:auto ;margin-left: -521px;padding:0px 0px 20px 0px;}
	.reveal-modal.xlarge 		{ width: 1000px; margin-left: -502px;padding:0;margin-top:-10px}
	
	.reveal-modal .close-reveal-modal {
		font-size: 22px;
		line-height: .5;
		position: absolute;
		top: 13px;
		right: 10px;
		color: #2b2a29;
		text-shadow: 0 -1px 1px rbga(0,0,0,.6);
		font-weight: bold;
		cursor: pointer;
		} 
