
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	width:1px;
	height:1px;
	position:absolute;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#111111;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(Image/icon_close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
	z-index:1;
}
