#cmts_modal_overlay {
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 50000;
	
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	// filter:alpha(opacity=70);
	opacity: 0.70;

	background-color: #000 !important;

}
#cmts_modal_overlay[id] { position: fixed; }
#cmts_modal {
	z-index: 50001;
	background-color: #fff;
	border: 10px solid #fff;
	-moz-border-radius: .5em;
	-webkit-border-radius: .5em;
	border-radius: .5em;
	box-shadow: 0px 0px 12px #666;
	-webkit-box-shadow: 0 0 12px #666; 
  	-moz-box-shadow: 0 0 12px #666;		
}
#cmts_modal_header {
	font-size: 1.5em;
	background-color: #fff;
	color: #000;
	position: relative;
	padding: 20px 30px;
}
#cmts_modal_close {
	position: absolute;
	right: 23px;
	top: 23px;
	width: 18px;
	height: 18px;
	line-height: 18px;
	display: -moz-inline-box;
	display:inline-block;
	text-decoration: none;
	cursor: pointer;
	background: url(../i/close.png) no-repeat;
}
#cmts_modal_close:hover {
	background-position: -18px;
}
#cmts_modal_content {
	padding: 30px;
	padding-top: 20px;
	overflow: auto;	
	position: relative;
}
#cmts_modal_loader {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin-left: -8px;
	margin-top: -18px;	
	background: url(../i/loader.gif) no-repeat center;
}