/* Makeshift CSS Reset */
{  
    margin: 0;  
    padding: 0;  
}  
/* Tell the browser to render HTML 5 elements as block */
header, nav, section, aside, footer {  
    display: block;
} 
/* General tags */
body {  
    margin: 0 auto;
    padding: 10px;
}
table {
    border-collapse: collapse;
}
td, th {
    border: 1px solid black;
}
/* Title, intro & navigation */
header {
    height: 100px;
}
nav {
}
/* Main content area */
#container {
    width: 96%;
}
#content {
    min-width: 600px;
    margin-right: 1em;
}
#gjs-loader {
    position: absolute;
    width: 560px;
    height: 352px;
    /*background: url("../js/lib/ajax-loader.gif");*/
    /*background-image: url("../img/lrjs-anim-3.gif"), url("../img/lrjs-level1.gif");*/
    background-image: url("../img/lrjs-anim-3.gif"), url("../img/lrjs-level0.gif");
    background-position: 0 308px, 0 0;
    background-repeat: no-repeat;
}
#gjs-loader span {
    color: #fff;
    font-weight: normal;
    background-color: #0f0;
    display: none;
}
#gjs-canvas {
    width: 560px;
    height: 352px;
    vertical-align: top;
}
#console {
}
#debug {
    display: none;
    background-color: gray;
}
/* Sidebar/info */
#info {
}
#kbd {
}
#cheat {
    display: none;
    background-color: grey;
}
/* Footer */
#footer {
    top: 1em;
}
@media screen and (min-width: 1024px) {
    #container {
        display: flex;
    }
    #content {
        flex: 1;
        /*margin-right: 1em;*/
    }
    #info {
        flex: 2;
    }
}
