
/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background:url(http://www.twistconditioning.com/images/overlay_image_bg.png) no-repeat;
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:822px;		
	
	/* some padding to layout nested elements nicely  */
	padding:18px 11px 18px 11px;

	/* a little styling */	
	font-size:11px;
	
	z-index:20000;
}

/* default close button positioned on upper right corner */
.apple_overlay div.close {
	background-image:url(http://static.flowplayer.org/tools/img/overlay/close.png);
	position:absolute; 
	right:0px; 
	top:-20px;
	cursor:pointer;
	height:35px;
	width:35px;
}

