@CHARSET "UTF-8";
/* the overlayed element */
div.overlay {
	/* growing background image */
	background-image:url(white.png);
	/* dimensions after the growing animation finishes  */
	width:620px;
	height:470px;		
	/* initially overlay is hidden */
	display:none;
	/* some padding to layout nested elements nicely  */
	padding:55px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(apple-close.png);
	position:absolute;
	right:10px;
	top:10px;
	cursor:pointer;
	height:28px;
	width:28px;
}
/* use a semi-transparent image for the overlay */
#overlay {
	background-image:url(white.png);
	color:#000000;
}

#main_window {
	width: 600px;
}
/* container for external content. uses vertical scrollbar, if needed */
div.wrap {
	height:441px;
	overflow:hidden;
}