.game {
	margin: 20px auto;
	height: 320px;
	width: 400px;
}
.snakeHead {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 100px;
	top: 100px;
	line-height: 0px;
	font-size: 0px;
	z-index: 1;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='/snake/snake-head.png');
}
.snakeHead[class] {
	background: url('/snake/snake-head.png');
}

.snakeBody {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 100px;
	top: 100px;
	line-height: 0px;
	font-size: 0px;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='/snake/snake-body.png');
}
.snakeBody[class] {
	background: url('/snake/snake-body.png');
}

.apple {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0px;
	top: 0px;
	line-height: 0px;
	font-size: 0px;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='/snake/apple.png');
}
.apple[class] {
	background: url('/snake/apple.png');
}

.arena {
	position: absolute;
	width: 400px;
	height: 300px;
	background: #fafafa;
	color: #000;
	border: #ffcccc 1px solid;
}

.score {
	position: absolute;
	width: 50px;
	height: 20px;
	font-weight: bolder;
	font-size: 12px;
	text-align: left;
	padding-left: 5px;
	vertical-align: middle;
	line-height: 20px;
}

.timeleft {
	position: absolute;
	width: 5px;
	height: 33px;
	background-color: #ffcccc;
	margin-left: -5px;
	z-index: 1;
}

.big {
	font-size: 20px;
	font-style: italic;
	font-weight: bolder;
}

.message {
	position: absolute;
	height: 30px;
	width: 400px;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 12px;
	display: none;
	z-index: 1;
	color: #000;
}
.info {
	margin:20px auto;
	text-align:center;
	font-size:1.1em;
	line-height:1.3em;
}
