 /* Z-index of #mask must lower than #boxes .window */  
#mask {  
   position:absolute;  
   z-index:9000;  
   background-color:#000;  
   display:none;  
}  
     
#boxes .window {  
   position:absolute;  
   width:440px;  
   height:200px;  
   display:none;  
   z-index:9999;  
   padding:20px; 
  font-size: 13px; 
}  
   
   
 /* Customize your modal window here, you can add background image too */  
#boxes #dialog {
    background-color: white;
   border: 4px solid #CCCCCC; 
   width:375px;   
   height:203px;
   -moz-border-radius: 10px; 
   border-radius: 10px;
   -webkit-border-radius: 10px;
}  

p.closer{
    text-align: right;

}
