
/* the overlayed element */
.apple_overlay {
	/* initially overlay is hidden */
	display:none;
	/* growing background image */
		background-image:url(http://streetsteam.com/images/spacer.gif);
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:640px;
	/* some padding to layout nested elements nicely  */
	padding:30px;
	
	/* a little styling */	
	font-size:11px;
background-color:#000000;

}



/* default close button positioned on upper right corner */
.apple_overlay div.close {
	position:relative;
	left:5px;
	top:5px;
	cursor:pointer;
	height:20px;
	width:35px;
	border:0px solid #0F3;
	float:right;
	background-image: url(../close.gif);
	background-repeat: no-repeat;	
}
