/* 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: #000;
    width: 100%;
    height: 100%;
    min-width:1024px;
    min-height:768px;
    margin: 0px;
    padding: 0px;
}

#flashpage {
    width: 100%;
    height: 100%;
    width: expression(document.body.clientWidth < 1026? "1024px" : "100%");
    height: expression(document.body.clientHeight < 780? "768px" : "100%");
}
