html, body {
	width: 100%;
	height: 100%;
}

body {
	background-color: #ffffff;
	margin: 0;
	overflow: hidden;
	font-family: arial;
}

#blocker {
	position: absolute;
	width: 100%;
	iheight: 100%;
	height: 100px;
	background-color: rgba(0,0,0,0.5);
	z-index: 10;
}

#wait {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	text-align: center;
	padding-top: 100px;
	z-index: 20;
}

#instructions {

	width: 100%;
	iheight: 100%;
	height: 100px;

	display: -webkit-box;
	display: -moz-box;
	display: box;

	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	box-orient: horizontal;

	-webkit-box-pack: center;
	-moz-box-pack: center;
	box-pack: center;

	-webkit-box-align: center;
	-moz-box-align: center;
	box-align: center;

	color: #ffffff;
	text-align: center;

	cursor: pointer;

}

#goforward {
	position: absolute;
	left: 25px;
	bottom: 95px;
	border: 1px solid red;
	width: 64px;
	height:45px;
	background-image: url(images/arrowforward.png);
	background-position: center;
	background-repeat:no-repeat;
	padding:0px 50px 0px 50px;
	
}

#goright {
	position: absolute;
	left: 105px;
	bottom: 50px;
	border: 1px solid red;
	width: 64px;
	height:45px;
	background-image: url(images/arrowright.png);
	background-position: center;
	background-repeat:no-repeat;
	padding:0px 10px 0px 10px;

}

#backwards {
	position: absolute;
	left: 25px;
	bottom: 5px;
	border: 1px solid red;
	width: 64px;
	height:45px;
	background-image: url(images/arrowback.png);
	background-position: center;
	background-repeat:no-repeat;
	padding:0px 50px 0px 50px;

}

#goleft {
	position: absolute;
	left: 25px;
	bottom: 50px;
	border: 1px solid red;
	width: 64px;
	height:45px;
	background-image: url(images/arrowleft.png);
	background-position: center;
	background-repeat:no-repeat;
	padding:0px 8px 0px 8px;

}

#aim {
	position: absolute;
	right: 70px;
	bottom: 70px;
	border: 2px solid red;
	width: 50px;
	height:60px;
	background-image: url(images/bullet.png);
	background-position: center;
	background-repeat:no-repeat;
	padding:0px 8px 0px 8px;
}