
/* the overlayed element */
div.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	
	background-image:url(../img/overlay/help.png);
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:720px;
	
	/* some padding to layout nested elements nicely  */
	
	padding:40px;
	padding-top:30px;
	padding-right:24px;

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

}

/* default close button positioned on upper right corner */
div.apple_overlay div.close {
	background-image:url(../img/overlay/close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}

div.apple_overlay div.inhoud { 
	height:460px;	
	margin-left: 20px;
	padding-right:30px;
    overflow-y:auto; 
    margin-bottom: 0; 

}

div.apple_overlay div.titel {
	height:40px;
	font-size: 17px;
	padding: 0px 0 0 20px;
	margin-top: 0;
}

div.apple_overlay div.inhoud p { 
    font-size: 1.3em; 
	font-color: #222f3d;
}