@import "buttons.css";
@import "controls.css";
@import "prompts.css";

html, body, #body-wrapper {
    height: 100%;
    min-width: 1025px;
    font-size: 16px;
    overflow: hidden;
}

h2 {
    margin: 0 0 15px 0;
    padding: 10px 0 5px 0;
    border-bottom: 1px solid #333;
}

#canvas {
    position: absolute;
    z-index: 100;
    left:0;
    top:0;
}

#message {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 900;
    width: 200px;
    height: auto;
    padding: 20px;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.clearfloat {
    clear: both;
}

.right-bordered {
    border-right: 1px solid #AAA;
}

.left-bordered {
    border-left: 1px solid #AAA;
}

.white-background {
    background-color: #FFF;
}

.light-background {
    background-color: #DDD;
}

.dark-background {
    background-color: #BBB;
}