/*	--------------------------------------------------
	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: 100px; 
		left: 50%;
		margin-left: -300px;
		width: 520px;
		/* background: #eee url(modal-gloss.png) no-repeat -200px -80px; */
		position: absolute;
		z-index: 101;
		padding: 0;
		}
		
	.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: 900px; margin-left: -450px;}
	
	a.close-reveal-modal {position: absolute; top: 8px; right: 11px; cursor: pointer;
	}
	a.close-reveal-modal div {position: absolute; top: 0px; right: 0px; cursor: pointer; display: block; width: 30px; height: 30px; background: url(../images/i-crossx.png) center center no-repeat #EF4035; border-radius: 50%; z-index: 110;
	}
	a.close-reveal-modal span {position: absolute; top: 0px; right: 0px; cursor: pointer; display: block; width: 30px; height: 30px; background: #fff; border-radius: 50%; z-index: 101; -webkit-transform: scale(.9); -moz-transform: scale(.9); -o-transform: scale(.9); transform: scale(.9); -webkit-transition: all .3s; -moz-transition: all .3s; -o-transition: all .3s; transition: all .3s;
	}
	a.close-reveal-modal:hover span{-webkit-transform: scale(1.2); -moz-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2);}
	
	.popBlock .pic{width: 485px; float: left; text-align: center;}
	.popBlock h2{font-size: 60px; text-transform: uppercase; color: #fff; text-shadow: 0px 2px 6px rgba(0,0,0,.5); margin-top: 100px; margin-bottom: 20px;}
	.popBlock h3{color: #DF7D36; font-size: 45px; font-family: 'HBold';}
	.popBlock .info{width: 410px; float: right;}
	
	 
	/*
		
	NOTES
	
	Close button entity is &#215;
	
	Example markup
	
	<div id="myModal" class="reveal-modal">
		<h2>Awesome. I have it.</h2>
		<p class="lead">Your couch.  I it's mine.</p>
		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ultrices aliquet placerat. Duis pulvinar orci et nisi euismod vitae tempus lorem consectetur. Duis at magna quis turpis mattis venenatis eget id diam. </p>
		<a class="close-reveal-modal">&#215;</a>
	</div>
	
	*/
