/* the overlayed element */ 
div.overlay { 
     
    /* growing background image */ 
    background-image:url(/images/trans.png); 
    background-repeat: no-repeat;
    /* dimensions after the growing animation finishes  */ 
    width:800px; 
   height:458px;       /* 432 + 26 for bottom of player  */
     
    /* initially overlay is hidden */ 
    display:none; 
	position:absolute;
	z-index:0;
/*     margin-right:100px; */
    /* some padding to layout nested elements nicely  */ 
 
} 
 
/* default close button positioned on upper right corner */ 
/*div.overlay div.close { 
    background-image:url(/images/close.png); 
    position:absolute; 
    left:5px; 
    top:5px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
    z-index:20000;
}*/
div.overlay div.close {
  background:url(/images/close.png) no-repeat;
 position:absolute;
  top:5px;
  right:5px; 
  width:36px;
  height:36px;
  cursor:pointer;
  z-index:100;
/*  margin-right:500px; */
  
}
/*#customer_player, #branding_player, div.close  {
  position:relative;
  left:-265px;
  top:100px;
  
}*/