#backgroundPopup
{  
    display:none;  
    position:fixed;
    _position:absolute; /* hack for internet explorer 6*/  
/*    height:100%;  
    width:100%;  
  */  top:0;  
    left:0;  
    background:#000000;  
    border:1px solid #cecece;  
    z-index:1;  
    margin:0;
    padding:0;
}

#backgroundPopup iframe {
display:none;/*sorry for IE5*/
display/**/:block;/*sorry for IE5*/
position:absolute;/*must have*/
top:0;/*must have*/
left:0;/*must have*/
z-index:-1;/*must have*/
/*filter:mask();*//*must have*/
width:100%;/*must have for any big value*/
height:100%/*must have for any big value*/;
}
 
div.popup__popup_container
{
    display:none;  
    position:fixed;  
    height:500px;  
    width:460px;  
    background:#FFFFFF;  
    border:2px solid #cecece;  
    z-index:20;  
    padding:12px;  
    font-size:13px;  
    overflow: auto;
    white-space: normal;
}  

div.popup__popup_container h1
{
    text-align:left;  
    color:#6FA5FD;  
    font-size:22px;  
    font-weight: bold;  
    
    padding-bottom:2px;  
    
    float: left;
}  

div.popup__popup_container h1 span
{
    color: #777777;
    font-size: 16px;
    display: block;
}

div.popup__end_header
{
    border-top:1px dotted #D3D3D3;  
    margin-bottom:20px;  
    clear: both;
}

a.popup__popup_container_close
{
    font-size:14px;  
    float: right;
    color:#6fa5fd;  
    font-weight: bold;  
    cursor: pointer;  
    text-decoration:none;  
}