/**
 * CSS for SQALightbox
 */

 .light {
 	position:fixed;
	left: 35%;
	top: 35%;
	background:#ccc;
	z-index:1001;
	width:400px;
	height:200px;
	border:solid 4px #5d5d5d;
	padding:24px;
 }
 .dark {
 	position:fixed;
	left:0px;
	top:0px;
	background:black;
	width:100%;
	height:100%;
	/**make transparent**/
	-moz-opacity: 0.8;
    opacity:.80;
    filter: alpha(opacity=80);
	z-index:1000;
 }
 .light_close{
 	
 	padding-left:2px;
 }
 .messagearea {
 	background: url('../../../images/error.png') no-repeat left top;
 	position:absolute;
	left:10px;
	top:20px;
	margin: 10px;
	margin-top: 10px;
	padding-left: 24px;
	padding-bottom: 24px;
	width:60%;
	height:auto;
	font-size:1.1em;
	
 }

