
/* the overlayed element */
.apple_overlay {
	/* initially overlay is hidden */
	display:none;
	/* growing background image */
	background-image:url(overlay/petrol.png);		
	color:#fff;
	width:640px;		
	/* some padding to layout nested elements nicely  */
	padding:35px;
	/* a little styling */	
	font-size:11px;
}
/* black version of the overlay. simply uses a different background image */
/*div.apple_overlay.black {
	background-image:url(http://static.flowplayer.org/tools/img/overlay/transparent.png);		
	color:#fff;
}*/
/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(overlay/apple-close.png);
	position:absolute; right:15px; top:15px;
	cursor:pointer;
	height:25px;
	width:25px;
}
.EPF_overlay {
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color:#000;
	min-height:200px;
	border:2px solid #444;
	-moz-border-radius: 10px; 
	-webkit-border-radius: 10px; 
	border-radius: 10px;
}
.EPF_overlay .close {
	background-image:url(overlay/apple-close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:25px;
	width:25px;
}
.EPF_overlay_light {
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color:#fff;
	min-height:200px;
	border:2px solid #777;
	color: #000;
	-moz-border-radius: 10px; 
	-webkit-border-radius: 10px; 
	border-radius: 10px;
}
/* close button positioned on upper right corner */
.EPF_overlay_light .close {
	background-image:url(overlay/apple-close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:25px;
	width:25px;
}