/*
@font-face {
    font-family: 'AgencyFBBoldFont';
    src: url('../fonts/agencyb.eot');
    src: url('../fonts/agencyb.eot?#iefix') format('embedded-opentype'),
    	url("../fonts/agencyb.woff") format("woff"),	
    	url('../fonts/agencyb.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}*/


@-ms-viewport {
	width: device-width;
}


html, body {
	background-color: #fff;
	color: #fff;
	font-family: helvetica, arial, sans-serif;
	margin: 0;
	padding: 0;
	font-size: 12pt;
	
	-webkit-tap-highlight-color:rgba(0,0,0,0);
    -ms-touch-action: none;

    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    overflow: hidden;
}

.ARK_gameContainer {
	position: fixed;
	top:0px;
	left:0px;
    width: 100%;
    height: 100%;
}

canvas  {
	position: absolute;
	top:0px;
	left:0px; 
	z-index: 1;
}

#bgCanvas {
	position: absolute;
	top:0px;
	left:0px; 
	z-index: 1;
	width: 100%;
	height: 100%;
}

#gameCanvas {
	z-index: 2;
}

#touchCanvas {
	z-index: -1;
    /*-webkit-transform-origin: 0 0;*/
    /*-webkit-transform: scale(0.2) translateZ(0);*/
	/*display: none;*/
}


@-webkit-keyframes hide_game_anim_kf {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes hide_game_anim_kf {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.hide_game_anim {
    -webkit-animation: hide_game_anim_kf 1.5s ease-in forwards;
    animation: hide_game_anim_kf 1.5s ease-in forwards;
}

#logo {
    display: block;
    position: absolute;
	width: 70px;
    right: 5px;
    bottom: 5px;
    z-index: 25;
}