body {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
#rocketContainer {
	width: 100%;
	height: 100%;
	margin: 0px;
	left: 0px;
	top: 0px;
	position: absolute;
	min-width: 900px;
	min-height: 500px;
	overflow: hidden;
}
#tightContainer {
	position: absolute;
	top: 3%;
	left: 5%;
	width: 90%;
	height: 80%;
}

/* INFO */

#instructionContainer{
	z-index: 100;
	position: absolute;
	left: 40px;
	top: 50px;
}

#title{
	height: 50px;
}

#bodyinfo{
	width: 800px;
	margin-top: 20px;
	margin-left: 50px;
}

#questionMark{
	cursor: hand;
	width: 25px;
	height: 25px;
	position: absolute;
	right: 20px;
	bottom: 20px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-align: center;
	padding-top: 3px; 
	opacity: 1;
}
#questionMark:hover{
	background-color: white;
	color: black;
}
/* VISUALS */
#visualFrame {
	width: 100%;
	height: 100%;
	border: solid 10px black;
	margin-left: -10px;
	/*margin: auto;
	*/
}
#spaceCanvas {
	width: 100%;
	height: 100%;
	opacity: 0;
	margin: 0px;
}
/*LOADING*/

#loadingContainer {
	width: 100%;
	height: 100px;
	text-align: center;
	top: 300px;
	position: absolute;
}
#spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -80px;
	margin-left: -150px;
	z-index: 100;
	width: 300px;
	height: 300px;
}
/* CONTROLS */
#controls {
	padding: 30px;
	position: absolute;
	width: 400px;
	height: 120px;
	margin-left: -250px;
	left: 50%;
	bottom: -100px;
	border: solid 10px black;
	z-index: -10;
	opacity: 0;
	/*
	 background-color: #888;
	 -webkit-perspective-origin: 50%;
	 -webkit-transform:rotateX(-45deg);
	 */
}
/*launch button*/
#blastOff {
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 60px;
	line-height: 120px;
	text-align: center;
}
/* flashing animation */
.flash {
	-webkit-animation: flash 800;
	-webkit-animation-iteration-count: 3;
}
@-webkit-keyframes flash{
0% {
opacity: 1;
}
50% {
opacity: .5;
}
100% {
opacity: 1;
}
}
/*speedomoter stuff*/
#speedIndicator {
	float: right;
	width: 120px;
	height: 120px;
}
#speedCanvasContainer {
	width: 120px;
	height: 120px;
}
#bgSpeedCanvas {
	position: absolute;
	width: 100%;
	height: 100%;
}
#speedCanvas {
	position: absolute;
	width: 100%;
	height: 100%;
}
#speedValue {
	opacity: 0.5;
	visibility: hidden;
}
#speedWord {
	width: 80px;
	position: absolute;
	top: 122px;
	font-size: 14px;
	margin-left: 48px;
	text-align: center;
}
/* thruster stuff*/
#thruster {
	width: 120px;
	height: 140px;
	top: 22px;
	margin-left: -50px;
	position: absolute;
	left: 50%;
}
#thrusterCover {
	opacity: 0.8;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
}
#thrustWord {
	margin-top: 5px;
	margin-bottom: 5px;
	position: absolute;
	top: 50px;
	width: 100px;
	text-align: center;
}

#powerUp{
	position: absolute;
	width: 100px;
	height: 50px;
	top: 0px;
}

#powerDown{
	position: absolute;
	width: 100px;
	height: 50px;
	top: 80px;
}

.arrow-up {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 50px solid black;
}
.button {
	cursor: hand;
}
.button:active {
	-webkit-transform: scale(0.92,0.92);
}


