<style>

.apple_overlay {

	/* initially overlay is hidden */
	display:none;

	/* growing background image */
	background-image:url(white.png);

	/*
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:675px;

	/* some padding to layout nested elements nicely  */
	padding:5px;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(close.png);
	position:absolute;
	right: -10px;
	top: -10px;
	cursor:pointer;
	height:35px;
	width:35px;
}

#overlay {
	height: auto;
	width: auto;
	background-color: #FFF;
}

/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	height: auto;
	width: auto;
	overflow: hidden;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #666;
}

.apple_overlay {
	margin: 5px;
	background-color: #FFF;
}
