/*	--------------------------------------------------
	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 {
    background: url("modal-gloss.png") no-repeat scroll -200px -80px #eee;
    border-radius: 5px;
    /*left: 50%;*/
    margin-left: -300px;
    min-height: 250px;
    padding: 20px;
    position: absolute;
    top: 100px;
    visibility: hidden;
    max-width: 520px;
    z-index: 101;
		}
		
	.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 {
    background-color: #2a7d42;
    color: #aaa;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    line-height: 0.8;
    padding: 5px;
    position: absolute;
    right: -7px;
    top: -5px;
    border: 1px solid #2a7d42;
    border-radius: 50%;
    font-size: 27px;
    font-family: calibri;
    width: 20px;
    height: 20px;
    text-align: center;
    color: #fff;
    line-height: 17px;
    letter-spacing: -1.5px;
		} 
.reveal-modal .close-reveal-modal:hover {
background-color:#f00;
border:1px solid #f00;
text-description:none;
}
.reveal-modal h1 {
    border: 1px dashed #c9cccc;
    border-radius: 3px;
    color: #4d4d4d;
    font-weight: 100;
    padding: 5px 10px;
    text-align: center;
    text-transform: uppercase;
}
	/*
		
	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>
	
	*/
