#score {
	display: none;
	color: #fff;
	position: absolute;
	top: 45px;
	left: 5px;
	padding: 3px 8px;
	font-family: monospace;
	font-size: 18px;
	text-align: center;
	color: #fff;
	opacity: 0.9;
	background: #444;
	border: 1px solid #333;
	border-radius: 5px;
}

#health {
	display: none;
	color: #fff;
	position: absolute;
	top: 5px;
	left: 5px;
	padding: 3px 8px;
	width: 143px;
	font-family: monospace;
	font-size: 18px;
	color: #fff;
	opacity: 0.9;
	background: #444;
	border: 1px solid #333;
	border-radius: 5px;
}

#health_bar {
	display: none;
	height: 5px;
	background-color: #00ff00;
	width: 20%;
}

#help {
	display: none;
	position: absolute;
	top: 80px;
	left: 5px;
}

#help_window {
	display: none;
	position: absolute;
	padding: 10px;
	top: 150px;
	left: 350px;
	width: 350px;
	font-family: monospace;
	font-size: 16px;
	color: #fff;
	opacity: 0.94;
	background: #222;
	border: 1px solid #222;
	border-radius: 5px;
	box-shadow: 0px 0px 30px 10px #222;
	z-index: 2;
}

#help_task {
	font-size: 16px;
}

.help_head {
	text-align: center;
	font-weight: bold;
	padding-bottom: 5px;
}

#start {
	display: none;
	position: absolute;
	top: 272px;
	left: 344px;
	width: 256px;
	height: 51px;
	background: url('img/logo_start.png');
}

#start:hover {
	top: 271px;
	left: 345px;
	cursor: pointer;
}

#dialog {
	position: absolute;
	padding: 10px;
	top: 420px;
	left: 260px;
	width: 500px;
	font-family: monospace;
	font-size: 16px;
	color: #fff;
	z-index: 2;
}

#dialog_next {
	display: none;
	position: absolute;
	top: 500px;
	left: 650px;
}

p {
	margin: 0;
}

#gameover {
	display: none;
	position: absolute;
	padding: 10px;
	top: 200px;
	left: 375px;
	width: 250px;
	font-family: monospace;
	font-size: 26px;
	text-align: center;
	color: #fff;
	opacity: 0.94;
	background: #222;
	border: 1px solid #222;
	border-radius: 5px;
	box-shadow: 0px 0px 30px 10px #222;
	z-index: 2;
}

#gameover p {
	margin: 5px;
}

#gamewin {
	display: none;
	position: absolute;
	padding: 10px;
	top: 200px;
	left: 375px;
	width: 250px;
	font-family: monospace;
	font-size: 26px;
	text-align: center;
	color: #fff;
	opacity: 0.94;
	background: #222;
	border: 1px solid #222;
	border-radius: 5px;
	box-shadow: 0px 0px 30px 10px #222;
	z-index: 2;
}

#gamewin p {
	margin: 5px;
}

#restart1, #restart2 {
	text-decoration: underline;
	color: #aaa;
	font-size: 16px;
	font-weight: bold;
}

#overlay {
	display: none;
	position: absolute;
	top: 0; left: 0;
	width: 1000px;
	height: 600px;
	background: #000;
	opacity: 0.5;
	z-index: 1;
}


.btn {
	display: block;
	padding: 5px 12px;
	cursor: pointer;
	font-family: monospace;
	font-weight: bold;
	font-size: 14px;
	text-shadow: 1px 1px #111;
	color: #bbb;
	outline: none;
	border: 1px solid #202020;
	border-radius: 3px;
	background: #3a3a3a linear-gradient(top, #6a6a6a 3%, #5a5a5a 4%, #3a3a3a 100%);
	background: -webkit-linear-gradient(top, #6a6a6a 3%, #5a5a5a 4%, #3a3a3a 100%);
	background:    -moz-linear-gradient(top, #6a6a6a 3%, #5a5a5a 4%, #3a3a3a 100%);
	background:     -ms-linear-gradient(top, #6a6a6a 3%, #5a5a5a 4%, #3a3a3a 100%);
	background:      -o-linear-gradient(top, #6a6a6a 3%, #5a5a5a 4%, #3a3a3a 100%);
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	     -o-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
} 

.btn:hover {
	color: #eee;
	background: #3b3b3b linear-gradient(top, #666 3%, #555 4%, #333 100%);
	background: -webkit-linear-gradient(top, #666 3%, #555 4%, #333 100%);
	background:    -moz-linear-gradient(top, #666 3%, #555 4%, #333 100%);
	background:     -ms-linear-gradient(top, #666 3%, #555 4%, #333 100%);
	background:      -o-linear-gradient(top, #666 3%, #555 4%, #333 100%);
}

.btn:active, .btn.active {
	color: #eee;
	padding: 6px 12px 4px;
	background: #222    linear-gradient(top, #212121 3%, #252525 4%, #222 100%);
	background: -webkit-linear-gradient(top, #212121 3%, #252525 4%, #222 100%);
	background:    -moz-linear-gradient(top, #212121 3%, #252525 4%, #222 100%);
	background:     -ms-linear-gradient(top, #212121 3%, #252525 4%, #222 100%);
	background:      -o-linear-gradient(top, #212121 3%, #252525 4%, #222 100%);
	-webkit-box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1);
	   -moz-box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1);
	     -o-box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1);
	        box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1);
}

.center {
	text-align: center;
}

.pull-left {
	float: left;
}

.pull-right {
	float: right;
}