/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
.reveal-modal-bg { 
	position: fixed; 
	height: 100%;
	width: 100%;
	background: #000;
	background: rgba(0,0,0,.5);
	z-index: 103;
	display: none;
	top: 0;
	left: 0; 
}
.reveal-modal {
	visibility: hidden;
	top: 100px; 
	left: 50%;
	margin-left: -300px;
	width: 520px;
	background: #fff;
	position: absolute;
	z-index: 104;
	padding: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-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: 456px; margin-left: -223px;}
.reveal-modal.large{ width: 600px; margin-left: -340px;}
.reveal-modal.xlarge{ width: 800px; margin-left: -440px;}
.reveal-modal .close-reveal-modal {
	font-size: 0;
	position: absolute;
	top: 14px;
	right: 15px;
	color: #aaa;
	text-shadow: 0 -1px 1px rbga(0,0,0,.6);
	font-weight: bold;
	cursor: pointer;
  width:22px;
  height:22px;
  background:transparent url(/static2/images/reveal_close.png) center center no-repeat;
}
.reveal_title{display:block;line-height:58px;font-size:18px;font-weight:bold;padding:0 50px 0 23px;border-bottom:1px solid #EDEDED;}
.reveal_con{display:block;padding:23px;}
.reveal_footer{line-height:58px;text-align:center;border-top:1px solid #EDEDED;}
.reveal_btn{padding:8px 15px;transition:background 0.3s ease-in-out;line-height:100%;margin-right:8px;display:inline-block;vertical-align:middle;cursor:pointer;}
.reveal_sub{color:#fff;background-color:#0799FE;border:1px solid #1694EB;border-radius:4px;}
.reveal_sub:hover{background:#1265A7;color:#fff;}
.reveal_cel{color:#999;background-color:#fafafa;border:1px solid #B8B8B8;border-radius:4px;}
.reveal_cel:hover{background:#e9e9e9;color:#999;}