
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-image:url(../images/commonicons/overlay_background.png);
	background-position:top center;
	background-repeat:no-repeat;
	
	width:600px;	
	min-height:600px;
	border:0px solid #666;
	padding-top:50px;
	
	/* CSS3 styling for latest browsers 
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;*/
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../images/commonicons/close.png);
	background-repeat:no-repeat;
	position:absolute;
	right:20px;
	top:20px;
	cursor:pointer;
	height:14px;
	width:14px;
}
