/* base.css */
html, body, div {
    width:100%;
    height:100%;
    color:#000;
    margin:0px;
    padding:0px;
    min-width:1000px;
    min-height:537px;
    background-color:#000000;
}
        
#container {
    width: expression(document.body.clientWidth < 1002? "1000px" : "100%");
    height: expression(document.body.clientHeight < 639? "537px" : "100%");
}
