/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
.reveal-modal-bg {
	position: fixed;
	height: 100%;
	width: 100%;
	opacity:1.0 !important;
	background: rgba(0,0,0,.8);
	z-index: 1000;
	display: none;
	top: 0;
	left: 0;
	right:0;
	bottom:0;
}
.reveal-modal_main {
	position: fixed;
	z-index: 1001;
	width: 100%;
	visibility: hidden;
	top:0;
	left:0;
}
.reveal-modal {
	position: relative;
	margin: 0 auto;
	top: 100px;
	max-width: 500px;
	width: 95%;
	background: #eee url(modal-gloss.png) no-repeat -200px -80px;
	-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: 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: 8px;
	right: 11px;
	color: #fff;
	text-shadow: 0 -1px 1px rbga(0, 0, 0, .6);
	font-weight: bold;
	cursor: pointer;
}
.reveal-modal .title_info {
	width: 100%;
	background: #A76500;
	padding: 10px 0;
	color: #fff;
	font-size: 18px;
}
.reveal-modal .title_info p {
	margin: 0 0 0 10px;
}
.reveal-modal .content_info {
	padding: 10px;
	background: #fff;
}
.reveal-modal .content_info .form p {
	font-family: 'open_sanslight';
	font-size: 14px;
	color: #666666;
	margin-bottom: 30px;
}
.reveal-modal .content_info .form ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.reveal-modal .content_info .form ul li {
	float: left;
	clear: both;
	width: 100%;
	margin-bottom: 25px;
	color: #666;
}
.reveal-modal .content_info .form ul li input[type="text"], .reveal-modal .content_info .form ul li input[type="email"], .reveal-modal .content_info .form ul li textarea {
	width: 100%;
	border: 1px solid #e1e1e1;
	padding: 0 2.5%;
	height: 40px;
	font-family: 'open_sansregular';
	font-size: 14px;
}
.reveal-modal .content_info .form ul li textarea {
	height: 120px;
	padding: 10px 2.5%;
	resize: none;
}
.reveal-modal .content_info .form ul li input[type="submit"] {
	width: 127px;
	padding-left: 18px;
	text-align: left;
	color: #fff;
	height: 37px;
	line-height: 37px;
	background: url(../images/submit-bg.png) 0 0 no-repeat;
	border: none;
	float: right;
}
