/* ==============================================================

   Author: Berrry Studio
   Author URL: http://codecanyon.net/user/BerrryStudio
   Game: Parallax Runner - HTML5 Game
   Game URL: #
   Version: 1.0

   ============================================================== */

body {
    background: #4D4D59;
    margin: 0;
    padding: 0;
    padding-top: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-callout: none;
    user-select: none;
}
#wrapper {
    margin: 0 auto;
    width: 976px;
}
#frame {
    border: 6px solid #35353D;
    border-right-color: #45454F;
    border-bottom-color: #646A7D;
    background: black;
    height: 324px;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}
#game {
    position: absolute;
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
    background: #B0B0BF;
    overflow: hidden;
}
#game .runner {
    position: absolute;
    height: 38px;
    width: 24px;
    background: url('runner.png');
    z-index: 5;
    left: -24px;
}
#game .building {
    position: absolute;
    bottom: 0;
    background: #B0B0BF url('windows.png');
    background: url('building-top.png') left top repeat-x, url('windows.png') left 90px;
    z-index: 3;
}
#game .paralaxbg1,
#game .paralaxbg2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: repeat-x;
}
#game .paralaxbg1 {
    background-image: url('paralax-bg-1.png');
    z-index: 2;
    width: 100%;
}
#game .paralaxbg2 {
    background-image: url('paralax-bg-2.png');
    z-index: 1;
    width: 100%;
    height: 99%;
}
#game .paralaxbeam1,
#game .paralaxbeam2 {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 6;
}
#game .paralaxbeam1 {
    width: 40px;
    background: #35353D;
}
#game .paralaxbeam2 {
    width: 128px;
    background: url('paralax-fg-crossbeams.png');
}
#game .distance {
    position: absolute;
    top: 5px;
    right: 5px;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: bolder;
    color: white;
    text-shadow: 2px 2px 0 black;
    text-align: right;
    z-index: 7;
}
a {
    background: #35353C;
    color: #4D4D59;
    padding: 5px 7px;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}