
/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(../img/white92.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:558px;		
	
	/* some padding to layout nested elements nicely  */
	padding:35px;

	/* a little styling */	
	font-size:11px;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(../img/close6.png);
	position:absolute; right:7px; top:7px;
	cursor:pointer;
	height:35px;
	width:35px;
}

#overlay {
		background-image:url(../img/white92.png);
		color:#efefef;
		height:455px;
	}
	
	/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
		height:431px;
		overflow-y:auto;
}


/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-image:url(../img/white.png);
	padding:55px;
	
	width:550px;	
	
	
		font-size:11px;
	/* CSS3 styling for latest browsers */

}

/* close button positioned on upper right corner */
.simple_overlay .close {

	background-image:url(../img/close6.png);
	position:absolute; right:7px; top:7px;
	cursor:pointer;
	height:35px;
	width:35px;
}
