
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#f5f5f5;
	font:13px Verdana; color:#808080;
	
	width:880px;
	min-height:200px;
	border:1px solid #666; padding:0px;
	
    /* hot CSS3 features for mozilla and webkit-based browsers (rounded borders) 
    -moz-border-radius:8px; 
    -webkit-border-radius:8px;  */	
}
.revue {padding:20px 30px 0px;}
/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(/i/overlay/close.png);
	position:absolute;
	right:-17px;
	top:-17px;
	cursor:pointer;
	height:35px;
	width:35px;
}

