	body{ 
	font-size:95%;
	line-height:180%;
	padding:0;
	margin:0;

	}
	.template-wrap {
		float:left;
		width:800px;
	}
	.template-wrap canvas { margin: 0 0 0 0; position: relative; z-index: 9; }
	.wrap{
		width:1000px;
		height:600px;
		overflow:hidden;
		margin:0px auto;
	}

	.wrap .left{
		float:left;
		width:200px;
		line-height:0;
		height:600px;
	}
	.stext{
		font-size:12px;
		line-height:17px;
		margin:5px 0px;
	}
	ul.menu{
		margin-left:25px;
		margin-top:10px;
		height:60px;
		width:750px;
		overflow:hidden;
		list-style:none;
		border:solid 4px #bbbbbb;
		background:#dddddd;
		padding:0;
	}
	ul.menu li{
		float:left;
		border-right:solid 2px #bbbbbb;
		background:#ffffff;
		padding:0px;
	}
	ul.menu li a{
		display:block;
		width:238px;
		height:60px;
		line-height:60px;
		color:#444422;
		font-weight:900;
		font-size:22px;
		padding:0px 5px;
		text-align:center;
		text-decoration:none;
		box-sizing:border-box;
	}
	ul.menu li a:hover{
		color:#222200;
		background:#dddddd;
	}


	.gamearea{
		position:relative;
		width:800px;
		height:450px;
	background-color:#222C36;
	}
        canvas {
            width: 800px;
            height: 450px;
        }

        div#loadingBox {
            width: 800px;
            height: 0px;
            position: absolute;
            top: 400px;
            margin-top: 0px;
            text-align: center;
        }
        
        div#icon {
            width: 300px;
            height: 310px;
            position: absolute;
            top: 20px;
            left: 250px;
            background-image: url("anthill.png");
            background-repeat: no-repeat;
            box-shadow: 1px 1px 5px #141414;
        }

        div#box {
            width: 328px;
            height: 338px;
            position: absolute;
            top: 10px;
            left: 235px;
            background: #222;
            box-shadow: 1px 1px 5px #000;
        }

        div#bgBar {
            display: none;
            position: absolute;
            width: 300px;
            left: 250px;
            height: 18px;
            background-color: #882121;
            box-shadow: 1px 1px 5px #111;
        }

        div#progressBar {
            display: none;
            left: 50%;
            position: absolute;
            margin-left: -150px;
            width: 0px;
            height: 18px;
            background-color: #dc4241;
        }

        p#loadingInfo {
            color: #fff;
            letter-spacing: 1px;
            position: absolute;
            width: 800px;
            font-family: sans-serif;
            text-align: center;
            top: 400px;
            font-size: 11px;
            font-weight: 500;
            text-shadow: 0px 0px 5px #000;
        }

        div#spinner {
            position: absolute;
            height: 18px;
            left: 50%;
            margin-left: -150px;
            width: 300px;
            position: relative;
            overflow: hidden;
            background-color: #882121;
            box-shadow: 1px 1px 5px #111;
        }

        div#spinner:before {
            display: block;
            position: absolute;
            content: "";
            width: 150%;
            margin-left: -10px;
            height: 10px;
            background-color: #e85352;
            transform: rotate(-5deg);
            animation: loading 1s linear infinite;
        }

        @keyframes loading {
            from {
                top: -185%
            }
            to {
                top: 225%
            }
        }