body {
	margin: 0;
	padding:0;
	overflow: hidden;
}

@-webkit-keyframes rotate {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

.animation-rotate {
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: 3;
    -webkit-transition-timing-function: linear;
}

.bounce {
    -webkit-animation:bounce 1s infinite;
}

@-webkit-keyframes bounce {
    0%       { bottom:5px; }
    25%, 75% { bottom:15px; }
    50%      { bottom:20px; }
    100%     {bottom:0;}
}

@-webkit-keyframes buzz {
    0% { -webkit-transform: scale(1); }
    50% { -webkit-transform: scale(0.9); }
    100% { -webkit-transform: scale(1); }
}

@-webkit-keyframes wiggle {
    0% {
        -webkit-transform:rotate(4deg);
    }
    50% {
        -webkit-transform:rotate(-4deg);
    }
    100% {
        -webkit-transform:rotate(4deg);
    }
}

.wiggle {
    -webkit-animation: wiggle 4s infinite;
}

#message {
	position: absolute;
	top: 10px;
	width: 100%; 
	text-align:center;
	display: none;
	font-size: 64px;
	font-weight:bold;
	z-index: 999;
    text-shadow: 3px 3px #ffffff;
}

#game {
    height: 100%;
    width: 100%;
}
.emp,
.dead{
    position: absolute; z-index:1; top: 50px; left: 200px;
	display: inline;

    height: 90px;
    width : 100px;
	
	text-align: center;
	/*border: 2px solid red;*/
}

.emp img,
.dead img {
	height: 100px;
    width: 100px;

}


.emp img.big,
.dead img.big{
	height: 128px;
	width: 128px;
}

.emp div.big,
.dead div.big{
	width: 128px !important;
}


.emp div,
.dead div {
	margin: 0 auto;
	padding:2px;
	text-align:center;
	background-color: #333;
    position: relative;
    z-index:9999;
	color: #fff;
	font-family: tahoma;
	font-size: 11px;
}

.flipped {
    transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -khtml-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
}

.flipped-vertical {
    transform: scale(1, -1);
    -moz-transform: scale(1, -1);
    -webkit-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    -khtml-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
}

#boss {
    position: absolute; bottom: 0px; left: -300px;
	height: 128px;
    width : 128px;
	display:none;

    /*border: 2px solid black;*/
}

#boss img {
    height: 128px;
    width : 128px;
}

#explosion {
    display: none; position: absolute; z-index:2;
    height: 32px;
    width : 48px;    
}

#eaten {
	position: absolute;
	bottom: 0;
	left: 0;
	right:0;
    z-index: 99999;
	height: 45px;
	background-color: #333;
	opacity: 0.6;
	color: #fff;
	font-size: 15px;
	font-family: tahoma;
}

#start {
    position: absolute;
    z-index: 9999999;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -100px;
}

.button {
    -moz-box-shadow:inset 0px 1px 0px 0px #c1ed9c;
    -webkit-box-shadow:inset 0px 1px 0px 0px #c1ed9c;
    box-shadow:inset 0px 1px 0px 0px #c1ed9c;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #8cb82b) );
    background:-moz-linear-gradient( center top, #9dce2c 5%, #8cb82b 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#8cb82b');
    background-color:#9dce2c;
    -webkit-border-top-left-radius:20px;
    -moz-border-radius-topleft:20px;
    border-top-left-radius:20px;
    -webkit-border-top-right-radius:20px;
    -moz-border-radius-topright:20px;
    border-top-right-radius:20px;
    -webkit-border-bottom-right-radius:20px;
    -moz-border-radius-bottomright:20px;
    border-bottom-right-radius:20px;
    -webkit-border-bottom-left-radius:20px;
    -moz-border-radius-bottomleft:20px;
    border-bottom-left-radius:20px;
    text-indent:0;
    border:1px solid #83c41a;
    display:inline-block;
    color:#ffffff;
    font-family:Comic Sans MS;
    font-size:15px;
    font-weight:bold;
    font-style:normal;
    height:50px;
    line-height:50px;
    width:200px;
    text-decoration:none;
    text-align:center;
    text-shadow:1px 1px 0px #689324;
}
.button:hover {
    cursor:pointer;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) );
    background:-moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cb82b', endColorstr='#9dce2c');
    background-color:#8cb82b;
}.button:active {
     position:relative;
     top:1px;
 }