body {
    padding: 0px;
    margin: 0px;
    background: #000;
}

form, table {
    margin: 0px;
    padding: 0px;
    border: none;
}

img {
    border: 0px;
}

#game_box {
    position: relative;
    width: 900px;
    height: 600px;
    margin: 0px auto;
    overflow: hidden;
}

#paused {
    display: none;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5) url(../img/paused.png) no-repeat center center;
}

#loading {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #fff url(../img/loading.png) no-repeat center center;
}

#loading_bar_box {
    position: absolute;
    width: 200px;
    height: 4px;
    background: #ccc;
}

#loading_bar {
    width: 0px;
    height: 4px;
    background: #000;
}

#loading_credits {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 250px;
    height: 60px;
    background: url(../img/credits.png);
}

#fps {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #fff;
    color: #000;
    opacity: 0.3;
}