body
{
    background:#000;
    color:#fff;
    font-family:"Lucida Console", Monaco, monospace;
    text-align:left;
    overflow:hidden;
    margin:0;
    padding:0;
}

#controlsButton
{
    position:absolute;
    top:8px;
    width:110px;
    height:72px;
    left:8px;
    overflow:hidden;
    padding:6px;
}

.hide
{
    opacity:0;
    -webkit-transition:opacity .5s ease-out;
    -moz-transition:opacity .5s ease-out;
    -o-transition:opacity .5s ease-out;
}

.show
{
    opacity:1;
    -webkit-transition:opacity .5s ease-out;
    -moz-transition:opacity .5s ease-out;
    -o-transition:opacity .5s ease-out;
}

img.cornered {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
}

a
{
    color:#9f9;
    text-decoration:none;
}

#help
{
    position:absolute;
    top:50%;
    width:800px;
    height:680px;
    left:50%;
    margin-left:-415px;
    margin-top:-340px;
    background-color:rgba(0,0,0,0.7);
    border-radius:10px;
    border:5px solid #666;
    overflow:auto;
    pointer-events:none;
    padding:10px;
    -webkit-user-select:none;
    -moz-user-select:none;
}

.button {
    *display: inline;
    -moz-border-radius: 0.5em;
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, .2);
    -webkit-border-radius: 0.5em;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, .2);
    height:16px;
    width:64px;
    border-radius: 0.5em;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, .2);
    cursor: pointer;
    display: inline-block;
    font: bold 13px "Lucida Grande", Arial, Verdana;
    margin: 0px 2px;
    outline: none;
    padding: 0.2em 1.5em 0.25em;
    text-align: center;
    text-decoration: none;
    vertical-align: baseline;
    zoom: 1;
}
.button:hover {
    text-decoration: none;
}
.button:active {
    position: relative;
    top: 1px;
}

.blue {
    background: #66a0d8;
    border: solid 1px #0076a3;
    color: #fff;
}
.blue:hover {
    background: #66a0d8;
}
.blue:active {
    background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
    color: #fff;
}