body {
  width: 100%;
  height: 80px;
  font-family: helvetica, sans-serif;
  margin: 0;
  padding: none;
  position: relative;
}
#wrapper{
	width: 100%;
	height: 600px;
	position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  color: #fff;
}

.loadingView {
  position: absolute;
  top: 300px;
  left: 0;
  width: 100%;
  height: 80px;
  margin: -40px auto 0;
  text-align: center;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  z-index: 1;
}

.emscripten {
  display: block;
}
div.emscripten {
  text-align: center;
}
div.emscripten_border {
  border: 1px solid black;
}
/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
canvas.emscripten {
  border: 0px none;
}

.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 #EE3987;
  border-right: 5px solid #EE3987;
  border-bottom: 5px solid #EE3987;
  border-top: 5px solid #fff;

  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0);
}

@-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);}
}
@keyframes rotation {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

.main {
  position: absolute;
  top: 600px;
  padding: 20px;
}

#status {
  display: inline;
  vertical-align: top;
  font-weight: bold;
}

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

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