/* the overlayed element 
div.overlay { width: 600px;
  	-webkit-border-radius: 15px;
  	-moz-border-radius: 15px;
  	/*overflow: auto;
  	max-height: 500px;
  	padding: 20px;
  	background-color: #ffffff;
	display: none;
	 }

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


/* black 
div.overlay.black {
	background:url(http://static.flowplayer.org/img/overlay/transparent.png) no-repeat !important;
	color:#fff;
}

/* petrol 
div.overlay.petrol {
	background:url(http://static.flowplayer.org/img/overlay/petrol.png) no-repeat !important;
	color:#fff;
}

div.black h2, div.petrol h2 {
	color:#ddd;		
}*/

/*------------- original -------------*/

/* the overlayed element */
div.overlay {
	
	/*border: 1px solid #000000;
	 growing background image */
	background-image: url(../images/wht_px.gif);
	background-repeat: no-repeat;
	
	/* dimensions after the growing animation finishes  */
	width:800px;
	height:406px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding: 0px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(../images/btn_overlay_close.gif);
	position:absolute;
	right:10px;
	top:10px;
	cursor:pointer;
	height:11px;
	width:11px;
}


