/* base.css */

/* The first line is to eliminate the outline around a clicked flash piece */
object {outline:none}
/* end outline bit */

html {
    width: 100%;
    height: 100%;
}

body {
    text-align: center;
    font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana";
    font-size: 11px; 
    background-color: #FCB912;
    color: #000;
    width: 100%;
    height: 100%;
    min-width:800px;
    min-height:600px;
    margin: 0px;
    padding: 0px;
}

#container {
    width: 100%;
    height: 100%;
    width: expression(document.body.clientWidth < 802? "800px" : "100%");
    height: expression(document.body.clientHeight < 612? "600px" : "100%");
}

