/* the overlayed element */
.apple_overlay {
	/* initially overlay is hidden */
	display:none;
	/* growing background image */
	background-image:url(../img/petrol.png);
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:200px;
	/* a little styling */	
	font-size:11px;
	font-family: Arial;
	color: #FFFFFF;
	padding: 30px;
}

/* default close button positioned on upper right corner */
.apple_overlay div.close {
	background-image:url(../img/apple-close.png);
	position:absolute; right:5px; top:3px;
	cursor:pointer;
	height:25px;
	width:25px;
}
