body {
	margin: 0px 0px 0px 0px;
	/* the extra 1px allows the iOS inner/outer check to work */
	background: #000;
	/*overflow: hidden;
	background-image: url(../assets/background_normal_web.jpg);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;*/
	/* min-height: 720px; */
}

#orientation {
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../assets/orientation.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-color: rgb(0, 0, 0);
	z-index: 999;
	display: none;
}

.app {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.app canvas {
	width: 100%;
	height: 100%;
}

.testMode {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999
}

.close {
	position: absolute;
	right: 16px;
	top: 16px;
	width: 32px;
	height: 32px;
	opacity: 0.8;
  }
  .close:hover {
	opacity: 1;
  }
  .close:before, .close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 5px;
	background-color: #5e462a;
  }
  .close:before {
	transform: rotate(45deg);
  }
  .close:after {
	transform: rotate(-45deg);
  }
  