body {
    font-family: arial;
    margin: 0;
    padding: none;
	min-width: 640px;
}

.spinner {
    height: 30px;
    width: 30px;
    margin: 0;
    margin-top: 20px;
    margin-left: 20px;
    display: inline-block;
    vertical-align: top;

    -webkit-animation: rotation .8s linear infinite;
    -moz-animation: rotation .8s linear infinite;
    -o-animation: rotation .8s linear infinite;
    animation: rotation 0.8s linear infinite;

    border-left: 5px solid rgb(235, 235, 235);
    border-right: 5px solid rgb(235, 235, 235);
    border-bottom: 5px solid rgb(235, 235, 235);
    border-top: 5px solid rgb(120, 120, 120);
    
    border-radius: 100%;
    background-color: rgb(189, 215, 46);
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(360deg);}
}
@-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to {-o-transform: rotate(360deg);}
}
@keyframes rotation {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

#status {
    display: inline-block;
    vertical-align: top;
    margin-top: 30px;
    margin-left: 20px;
    font-weight: bold;
    color: rgb(120, 120, 120);
}

#progress {
    height: 20px;
    width: 30px;
}

#controls {
    display: inline-block;
    float: right;
    vertical-align: top;
    margin-top: 30px;
    margin-right: 20px;
}


#output {
    width: 95%;
    height: 200px;
    margin: 0 auto;
    margin-top: 10px;
    border-left: 0px;
    border-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    display: block;
    background-color: black;
    color: white;
    font-family: 'Lucida Console', Monaco, monospace;
    outline: none;
	display: none;
}


div.fullscreen {
	float: right;
	padding-right: 1em;
}

.emscripten {
	padding-right: 0;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
div.emscripten {
	text-align: center;
}      
div.emscripten_border {
	background: #222;
	border: 1px solid black;
	margin-right: 19em;
}
div.emscripten_wrap {
	float: left;
	width: 100%;
	margin-right: -19em;
}
/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
canvas.emscripten { border: 0px none; }

div.score_border {
	float: left;
	width: 16em;
	padding: 1em;
	margin: 0;
}

div.instraction {
	padding: 1em;
	clear: left;
}

textarea#box-ranking {
	font-size: 10pt;
	width: 16em;
	resize: none;
}

textarea#box-latest {
	font-size: 10pt;
	width: 16em;
	resize: none;
}

h1.inst {
	font-size: 16pt;
}

.footer {
  //position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background-color: #f5f5f7;
  padding-left: 1.5em;
  padding-rigth: 1.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

div.foot_powered {
	float: right;
}

div.foot_return {
	float: left;
}

a.info {
	color: black;
	text-decoration: none;
}