/**
 * 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 {
    display: none;
}

div.game.step-0>div.step-0,
div.game.step-1>div.step-1{
    display: block;
}

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 {
    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;
    top: -500px;
}
div.game div.step-1-description>div>div {
    margin: 10px 10px 10px 10px;
}