<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
	.reveal-modal-bg { 
		position: fixed; 
		height: 100%;
		width: 100%;
		background: #000;
		background: rgba(0,0,0,.8);
		z-index: 100;
		display: none;
		top: 0;
		left: 0; 
		}
	
	.reveal-modal {
		visibility: hidden;
		top: 50%;
		margin-top:-300px; 
		left: 50%;
		margin-left: -450px;
		width: 900px;
		height:600px;
		background: #eee;
		position: absolute;
		z-index: 101;
		-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: 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: 44px;
		line-height: .5;
		position: absolute;
		top: 18px;
		right: 11px;
		color: #aaa;
		text-shadow: 0 -1px 1px rbga(0,0,0,.6);
		font-weight: bold;
		cursor: pointer;
		} 



.reveal-modal .title{ height:60px; line-height:60px; text-indent:40px; font-size:20px; color:#000; background-color:#fff;}
.reveal-modal .imgbox{ position:relative;}
.reveal-modal .imgbox&gt;a{ position:absolute; left:0; top:0; width:100%; height:100%;}
.reveal-modal .imgbox&gt;a img{ position:absolute; left:50%; top:50%; margin-left:-50px; margin-top:-50px;}


@media screen and ( max-width:1004px ){
	.reveal-modal .close-reveal-modal { font-size: 30px; line-height: .5; top: 6px; right: 11px;} 
	.reveal-modal { margin-top:-100px;margin-left: -150px; width: 300px; height:200px;}
	.reveal-modal .title{ height:30px; line-height:30px; text-indent:10px; font-size:16px;}
	}</pre></body></html>