
/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(/images/global/white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:700px;
	
	/* some padding to layout nested elements nicely  */
	padding:90px 35px 35px;

	/* a little styling */
	font-size:11px;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	position:absolute; left:300px; top:40px;
	cursor:pointer;
	height:27px;
	width:59px;
}

.apple_overlay #select {
	background-image:url(/images/global/btn_decision.png);
}

.apple_overlay #nonselect {
	left: 400px;
	background-image:url(/images/global/btn_close.png);
}

#overlay {
		height:545px;
	}
	
	/* container for external content. uses vertical scrollbar, if needed */
	div.contentWrap {
		height:500px;
		overflow-y:auto;
	}