/* the overlayed element */
div.apple_overlay {
	/* initially overlay is hidden */
	display:none;
	/* growing background image */
	background-image:url(../img/white.png);
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:450px;
	height:auto;
	/* some padding to layout nested elements nicely  */
	padding:50px;
	/* a little styling */	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height:15pt;
	color:#fff;
}
/* default close button positioned on upper right corner */
div.apple_overlay div.close {
	background-image: url(../img/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}
/* use a semi-transparent image for the overlay */
#overlay {
	background-image:url(../img/petrol.png);
	color:#99ccff;
	height:auto;
}
/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	height:auto;
	overflow-y:auto;
	padding-bottom:0;
	padding-left:10px;
	padding-right:0;
	padding-top:0;
}
