@charset "utf-8";
/* CSS Document */
/* the overlayed element */
.overlay_bg {
	display:none;
	z-index:9000;
	background-color:#000000;
	opacity:0.8;
	width:100%;
	height:100%;
}
.simple_overlay {
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
    z-index:10000;
	/* styling */
	background-color:#ffffff;
	width:675px;
	min-height:400px;
	/*	opacity: 0.9;*/
	border:3px solid #533BE5;
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;
	-moz-border-radius: 7px;
	margin-top: 35px;
/*	background-image: url(../Scripts/overlay-images/close.png);
	background-repeat: no-repeat;*/
}
.simple_overlay a{
color: #533BE5;
text-decoration:underline;
}

.simple_overlay a:hover{
color: #FF0000;
text-decoration:underline;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../../Scripts/overlay-images/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
	background-repeat: no-repeat;
}
/* styling for elements inside overlay */
	.details {
	position:absolute;
	top:15px;
	right:25px;
	font-size:12px;
	color:#000;
	width:600px;
	text-align: left;
	}
	
	.details h3 {
	color:#aba;
	font-size:15px;
	margin:0 0 -10px 0;
	text-align: left;
	}
	
	.details h4 {
	text-align: left;
	}
	.details p {
	text-align: left;
	}
/* end of overlay */


