
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* growing background image */
	background-image:url(imgs/overlay/transparent.gif);
	
	/* styling */
	background-color:#fff;	
	width:auto;
	padding:7px 0px 0px 0px;
	/* was--> padding:5px 13px 53px 7px;*/
	
	/* CSS3 styling for latest browsers*/
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;
	
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(imgs/overlay/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
	z-index:10000;
}

