/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background:url(../images/overlay/white2.png);
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:640px;
    height: 15px;		
	
	/* some padding to layout nested elements nicely  */
	padding:60px;

	/* a little styling */	
	font-size:11px;
}

/* default close button positioned on upper right corner */
.apple_overlay div.close {
	background-image:url(../images/overlay/close.png);
	position:absolute; right:10px; top:10px;
	cursor:pointer;
	height:35px;
	width:35px;
}

.apple_overlay p {padding: 3px 0 25px 0;}

#helpOverlay {
                background:url(../images/overlay/white.png);
}

#helpOverlay ul li {padding: 10px 150px 10px 10px;} 

#helpOverlay h1    {font-size:18px;}
