/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(/design/images/overlay_video/white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
    height:700px;  
    width:785px;  		
	
	/* 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 div.close {
	background-image:url(/design/images/overlay_video/close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}

/* container for external content. uses vertical scrollbar, if needed */
.contentWrap {
	border: none;
    height: 700px;
	width: 785px;
	overflow-y: auto;
}

/* tooltip styling. by default the element to be styled is .tooltip  */
#tooltip, .tooltip {
	display:none;
	background-color:#A0A0A0;
	padding:3px;
	font-size:13px;
	-moz-box-shadow: 2px 2px 11px #666;
	-webkit-box-shadow: 2px 2px 11px #666;
}



