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