/* SCOV: SCroll in OVerlay 
 * Enables scrolling within popup overlay and disables scrolling on the page beneath.
 * see also: scov.js
 */
.scov-overlay {
	display:none;
	background: #000;
	background: rgba(0,0,0,0.75);
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	z-index: 900;
	min-height: 100%;
	overflow-y: scroll;
}
.scov-popup {
	position:relative;
	background-color:#FFF;
	padding:28px 80px;
	width:760px;
	min-height:300px;
	margin:20px auto 20px;
}
.scov-popup.loading{
	background: url('img/ajax-loader.gif') no-repeat center center #FFF;
}
.scov-popup  .content{
	display:none;
}
#scov-close{
	background:url(../var/img/x.jpg) no-repeat; 
	position:absolute; 
	top:20px; 
	right:35px; 
	width:20px; 
	height:20px; 
	text-indent:-9999px;
	border:none;
	padding:0;
	cursor:pointer;
}

#scov-close:hover{
	background:url(../var/img/x-hover.jpg) no-repeat; 
	background-position:0;
}