@charset "utf-8";
/* CSS Document */



/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#fff;
	
	width:375px;	
	min-height:200px;
	border:1px solid #D1D3C7;
	padding: 20px;
	
	/* CSS3 styling for latest browsers */
/*	-moz-box-shadow:0 0 50px 5px #000;
	-webkit-box-shadow: 0 0 50px #000;	*/
	
		-moz-box-shadow: 0 0 30px 3px #CCC;
	-webkit-box-shadow: 0 0 30px #ccc;
	box-shadow: 0px 0px 30px #ccc;
	/* For IE 8 
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=10, Direction=245, Color='#ccc')";*/
	/* For IE 5.5 - 7 
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=245, Color='#ccc');*/
	
}

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



