@charset "utf-8";
/* CSS Document */

/* the overlayed element */
.apple_overlay {
	/* initially overlay is hidden */
	display:none;
	position:absolute;
	top:10px;
	right:10px;
	/* growing background image */
	background-image:url(../img/overlay/white.png);
	/*background-image:url(../images/overlay/overlay_white_01.png);*/
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:450px;
	/*height:560px;*/
	
	/* some padding to layout nested elements nicely  */
	padding:30px;

	/* a little styling */	
	
	/*font-family:Tahoma, Geneva, sans-serif;
	color:#333;
	font-size:11px;*/
}

/* default close button positioned on upper right corner */
.apple_overlay div.close {
	background-image:url(../images/overlay/close.png);
	position:absolute; right:10px; top:2px;
	cursor:pointer;
	height:35px;
	width:35px;
}

