/* popup_box DIV-Styles*/
#popup_box { 
     /* Hide the DIV */
    position:fixed;  
    _position:absolute; /* hack for internet explorer 6 */  
    height:600px;  
    width:700px;
    overflow-y:scroll; 
    background:#eee;  

    top: 150px;
    left: 150px;
    z-index:200; /* Layering ( on-top of others), if you have lots of layers: I just maximized, you can change it yourself */
    margin-left: 15px;  
    
    /* additional features, can be omitted */
    border:1px solid #000;      
    padding:15px;  
    font-size:0.9 em;  
    -moz-box-shadow: 0 0 5px #ccc;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
    
}
a{  
cursor: pointer;  
text-decoration:none;  
} 

/* This is for the positioning of the Close Link */
#popupBoxClose {
    font-size:10px;  
    line-height:15px;  
    right:5px;  
    top:5px;  
    position:absolute;  
    color:red;  
    font-weight:500;      
}