/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(http://www.1stopdigital.com/flowplayer/overlay/white.png);
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:470px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
}

div.overlay-black {
	
	/* growing background image */
	background-image:url(http://www.1stopdigital.com/flowplayer/overlay/black_noclose.png);
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:470px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;

	overflow-y:scroll;
}

/* a larger version of the same overlay from above */
div.overlay-large {
	
	/* growing background image */
	background-image:url(http://www.1stopdigital.com/flowplayer/overlay/white_large.png);
	
	/* dimensions after the growing animation finishes  */
	width:940px;
	height:680px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:40px;
}

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

div.overlay-black div.close {
	background-image:url(http://www.1stopdigital.com/flowplayer/overlay/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}

div.overlay-large div.close {
	background-image:url(http://www.1stopdigital.com/flowplayer/overlay/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}
