*,
*:after,
*:before{
	box-sizing: border-box;
	padding: 0;
	border: 0;
	margin: 0;
}

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

body{
	color: #eeeeee;
	background: #323232;
	font-family: Verdana, sans-serif;
	font-size: 16px;
	line-height: 140%;
	overflow-x: hidden;
}

div{
	text-align: center;
}

div.header{
	padding: 12px;
}

div.status{
	padding: 10px;
	min-height: 24px;
}

div.canvas{
	width: 100%;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

div.center{
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: center;
}

canvas{
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	margin: 0 auto;
	outline: none;
}

input[type="checkbox"]{
	vertical-align: middle;
}

textarea{
	width: 100%;
	position: absolute;
	opacity: .9;
	bottom: 0;
	left: 0;
}

a{
	color: #eeee00;
	text-decoration: none;
	cursor: pointer;
}

a:hover{
	color: #00ee00;
}

a.button{
	color: #ffffff;
	background-color: #4c4c4c;
	border: 1px solid #4c4c4c;
	border-radius: 3px;
	padding: 4px 7px;
	font-size: 11px;
	font-weight: 400;
	text-align: center;
}

a.button:hover{
	color: #ffff00;
	background-color: #888888;
	border-color: #888888;
	outline: 0;
}