/* the overlayed element */ 
div.overlay { 
     
    /* dimensions after the growing animation finishes  */ 
    width:800px; 
    height:400px;         
     
    /* initially overlay is hidden */ 
    display:none; 
    
    background-color: #fff;
    /*overflow: hidden;
    /* some padding to layout nested elements nicely  */ 
    padding:10px;
    background:none;

	background-image: url(images/overlay/gamepopupbg.png); 
} 
 
/* default close button positioned on upper right corner */ 
div.overlay div.close { 
    background-image:url(images/overlay/close.png);
    position:absolute; 
    right:-20px; 
    top:-20px; 
    cursor:pointer; 
    height:35px; 
    width:35px;
} 
 
#exposeMask {
	background-image: none;
}


 
div.black h2, div.petrol h2 { 
    color:#ddd;         
}