*{margin:0px;padding:0px;}
body {
	margin: none;
	padding: none;
}

#kv_game {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#kv_input_receiver {
	position: absolute;
	opacity: 0;
	width: 0;
	overflow: hidden;
}

#kv_output {
	display: none;

	margin-top: 20px;
	resize: none;
	width: 448px;
	background: black;
	color: white;
	font-weight: bold;
	font-size: 10px;
	border: none;
}

#kv_canvas_area {
	display: block;
	position: relative;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

#kv_canvas, #kv_loading_overlay {
	position: relative;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin-left: auto;
	margin-right: auto;

	width: 448px;
	height: 448px;
}

#kv_loading_overlay {
	position: absolute;
	background-color: #5D415B;
	font-size: 1.25em;
	font-family: monospace;
	color: #CFCF00;
	font-weight: bold;
}

#kv_overlay_content {
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 50%;
	bottom: 50%;
}

.kv_fade_out {
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.kv_spinner {
	margin: auto;
	margin-bottom: 20px;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;

  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
}

.kv_dot1, .kv_dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #FE283E;
  border-radius: 100%;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.kv_dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

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

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
