html, body {
	margin: 0;
	height: 100%;
	overflow: hidden;
}

#arkanoid {
	height: 100%;
}
#ball {
	position: absolute;
	z-index: 1000;
}
#vaus {
	position: absolute;
	bottom: 0;
	width: 100%;
	overflow: auto;
	height: 36px;
}
#vaus div {
	width: 700%;
	height: 16px;
}
#start {
	position: absolute;
	top: 70%;
	left: 50%;
	width: 70px;
	margin-left: -45px;
	margin-top: -30px;
	font-size: 16px;
}

.block {
	position: absolute;
	width: 70px; height: 30px;
	font-size: 16px;
}
.block.disabled {
	opacity: 0.5;
	filter: alpha(opacity=50);
}