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

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

img {
    border: 0;
}

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

#paused {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    line-height: 600px;
    text-align: center;
    color: #fff;
}

#loading {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
}

#loading_text {
    width: 210px;
    height: 40px;
    margin: 0 auto 0;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-family: "upheaval", sans-serif;
    font-size: 30px;
}

#loading_bar_box {
    width: 200px;
    height: 10px;
    margin: 0 auto;
    padding: 4px;
    border: 1px solid #fff;
}

#loading_bar {
    width: 0;
    height: 10px;
    background: #fff;
}

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