/*	--------------------------------------------------
	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: 50px; 
		left: 50%;
		margin-left: -400px;
		width: 680px;
		background: #f4f4f4;
        min-height:200px;
		position: absolute;
        position:relative; margin-top:-100px;
		z-index: 70000 !important;
		padding: 30px 0px 0px 0px;
		-moz-border-radius: 15px;
		-webkit-border-radius: 15px;
		border-radius: 15px;
		-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);
        
        overflow:hidden;
		}
    	.reveal-modal-std {
		visibility: hidden;
		top: 150px; 
		left: 50%;
		margin-left: -200px;
		width: 680px;
		background: #f4f4f4;
        min-height:200px;
		position: absolute;
        position:relative;
     
		z-index: 70000 !important;
		padding: 30px 0px 0px 0px;
		-moz-border-radius: 15px;
		-webkit-border-radius: 15px;
		border-radius: 15px;
		-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);
        
        overflow:hidden;
		}

.reveal-modal .modal-head {
    width:100%;
    border-bottom:1px solid #999;
    vertical-align:middle;
    font-weight:400;
     font-family:Arial;
     font-size:16px;
    position:absolute;
   top:0px;
      width:100%;
   min-height:27px;
   z-index:999;
   padding:10px 0px 1px 15px;
   display:block;
   color:#fff;
       background: #0789bd; /* Old browsers */
  background: -moz-linear-gradient(top,  #0789bd 0%, #029ed9 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0789bd), color-stop(100%,#029ed9)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #0789bd 0%,#029ed9 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #0789bd 0%,#029ed9 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #0789bd 0%,#029ed9 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #0789bd 0%,#029ed9 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0789bd', endColorstr='#029ed9',GradientType=0 ); /* IE6-9 */
   -moz-box-shadow: 0 0 10px rgba(60,60,60,.4);
		-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
		box-shadow: 0 0 10px rgba(60,60,60,.4);  
  z-index:10;

}
.reveal-modal-std .modal-head{
    width:100%;
    border-bottom:1px solid #999;
    vertical-align:middle;
    font-weight:400;
     font-family:Arial;
     font-size:16px;
    position:absolute;
   top:0px;
      width:100%;
   min-height:27px;
   z-index:999;
   padding:12px 0px 1px 30px;
   display:block;
   color:#fff;
       background: #0789bd; /* Old browsers */
  background: -moz-linear-gradient(top,  #0789bd 0%, #029ed9 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0789bd), color-stop(100%,#029ed9)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #0789bd 0%,#029ed9 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #0789bd 0%,#029ed9 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #0789bd 0%,#029ed9 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #0789bd 0%,#029ed9 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0789bd', endColorstr='#029ed9',GradientType=0 ); /* IE6-9 */
   -moz-box-shadow: 0 0 10px rgba(60,60,60,.4);
		-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
		box-shadow: 0 0 10px rgba(60,60,60,.4);  
  z-index:10;

}
.reveal-modal-std .modal-head img {
    height:28px;
    vertical-align:middle;
    margin-top:0px;
    position:absolute;
    left:5px;
    top:5px;

}
.reveal-modal .modal-content, .reveal-modal-std .modal-content{
    width:99%;
    min-height:200px;
    min-width:500px;
    position:relative; z-index:90000;
    vertical-align:top;
    position:relative;
    top:10px;
    font-family:Arial;
    color:#333;
   margin:0px 5px;
    overflow:auto;
    padding-right:10px;
    

}

    .padding {
        padding: 0 40px;
    }
		
	.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: 22px;
		line-height: .5;
		position: absolute;
		top: 15px;
		right: 25px;
		color: #aaa;
		text-shadow: 0 -1px 1px rbga(0,0,0,.6);
		font-weight: bold;
		cursor: pointer;
		} 

    	.reveal-modal-std .close-reveal-modal {
		font-size: 30px;
		line-height: .5;
		position: absolute;
		top: 13px;
		right: 40px;
		color: #aaa;
		text-shadow: 0 -1px 1px rbga(0,0,0,.6);
		font-weight: bold;
		cursor: pointer;
		} 
	/*
		
	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>
	
	*/
