/* style for the pop the bulbs overlay */

/* the overlayed element */
div.overlay {
		
	/* dimensions after the growing animation finishes  */
	width:300px;
	height:400px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:10px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(images/close.png);
	position:absolute;
	right:-10px;
	top:-10px;
	cursor:pointer;
	height:25px;
	width:25px;
	z-index: 999 !important;
}


/* black */
div.overlay.black {
	background:url(http://static.flowplayer.org/img/overlay/transparent.png) no-repeat !important;
	color:#fff;
}

div.black h2, div.petrol h2 {
	color:#ddd;		
}

/* use a semi-transparent image for the overlay */ 
#overlay { 
   background-image:url(images/game-bg.gif); 
    color:#efefef; 
    height:400px; 
} 
 
/* container for external content. uses vertical scrollbar, if needed */ 
div.wrap { 
    height:420px; 
    padding-top: -5px;
    overflow-y:hidden; 
}