/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;	
	width:312px;	
	height: 224px;
	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../img/close_btn.png);
	position:absolute;
	right:15px;
	top:5px;
	cursor:pointer;
	height:20px;
	width:20px;
}

