/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10;
	
	/* styling */
	background-color:#333;
	
	width:525px;	
	min-height:250px;
	position:relative;
	left:167px !important;
	top:0 !important;
	
}

/* fix for IE6 */
* html .simple_overlay {
		left: -755px !important;
	
}

/* close button positioned on upper right corner */
.simple_overlay .close {

}

