/* base.css */
html, body {
    width:100%;
    height:100%;
    color:#fff;
    margin:0px;
    padding:0px;
    min-width:800px;
    min-height:600px;
    background-color:#ffffff;
}
        
#container {
    width: 100%;
    height: 100%;
}
#container {
    width: expression(document.body.clientWidth < 802? "800px" : "100%");
    height: expression(document.body.clientHeight < 602? "600px" : "100%");
}
