/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
	.reveal-modal-bg { 
		position: fixed; 
		height: 100%;
		width: 100%;
		background: rgba(255,255,255,1);
		z-index: 100;
		display: none;
		top: 0;
		left: 0; 
		}
	
	.reveal-modal {
		visibility: hidden;
		top: 0;
		left: 50%;
		margin-left: -200px;
		width: 400px;
		background: #fff;
		position: absolute;
		z-index: 101;
		}
	
	.reveal-modal .close-reveal-modal {
		position: absolute;
		display: block;
		font-size: 30px;
		top: -50px;
		left: 50%;
		margin: 0 0 0 -15px;
		color: #aaa;
		cursor: pointer;
		transition: transform ease-out 0.3s;
		} 
		
.reveal-modal .close-reveal-modal:hover {
	transform: rotate(90deg);
}


