/**
 * Copyright eLearning Brothers LLC 2012 All Rights Reserved
 */
body.gamebody {
    margin: 0 auto;
    width: 720px;
    height: 540px;
}

div.game :focus {outline: 0; }
div.game ::selection {background: rgba(0,0,0,0);}

div.game {
    background: black 50% 50% no-repeat;
    width: 720px;
    height: 540px;
    background-size: cover;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    padding: 0;
    position: relative;
    overflow: hidden;
}
div.game div.btn>div.veil{
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.2;
}
div.game div.btn>div.veil:hover{
    opacity: 0;
}
div.game div.btn>div.veil:active{
    opacity: 0.2;
}
div.game>div {
    display: none;
}

div.game.step-0>div.step-0,
div.game.step-1>div.step-1{
    display: block;
}
div.game div.btn,
div.game div.tab {
    cursor: pointer;
}
div.game div.table{
    display: table;
    height: 100%;
    text-align: center;
    margin: 0px auto;
}

div.game div.table div{
    font-weight: bold;
    display: table-cell;
    vertical-align: middle;
    cursor: pointer;
}

/* STEP 1 */

div.game div.play_intro {
    display: none;
}
div.game div.step-1-description-container{
    position: absolute;
    z-index: -1;
}
div.game div.cover{
    background-color: #000000;
    opacity: 0;
    height: 540px;
    width: 720px;
    position: absolute;
    z-index: -1;
}
div.game div.step-1-description {
    padding: 0px;
    background: white;
    border: 5px solid #CCC;
    margin: 0 auto;
    width: 600px;
    height: 290px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.7);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.7);
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    overflow-y: hidden;
    overflow-x: hidden;
}
div.game div.step-1-description>div {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
    min-height: 100%;
    width: 100%;
    position: absolute;
    left: -700px;
}
div.game div.step-1-description>div>div {
    margin: 10px 10px 10px 10px;
}
div.game div.step-1-intro>div.intro {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
    min-height: 100%;
}
div.game div.step-1-intro>div.intro>div {
    margin: 5px 5px 0 5px;
}
div.game canvas {
    position: absolute;
}

div.game div.transit {
    -moz-transition: left 400ms;
    -webkit-transition: left 400ms;
    -ms-transition: left 400ms;
    -o-transition: left 400ms;
    transition: left 400ms;
}
