*{
	padding:0px;
	margin:0px;
}
body {
	font-family: 'Trebuchet MS';
	font-size: 11px;
	padding:0px;
	margin:0px;
}
h2{
	color: #3080d0;
	font-weight: bolder;
	font-size: 15px;
	margin-top: 20px;
	text-align: center;
}
.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-head.png');
}
.snakeHead[class] {
	background: url('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-body.png');
	/* ff00ae */
}
.snakeBody[class] {
	background: url('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='apple.png');
}
.apple[class] {
	background: url('apple.png');
}

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

.score {
	position: absolute;
	width: 50px;
	height: 20px;
	/* border: 1px dotted #e0e0e0; */
	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;
}

.body {
	height: 320px;
	width: 400px;
	margin: 20px auto 0px auto;
}

.head {
	text-align: center;
	margin-top: 20px;
}

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

.small {
	font-size: 10px;
	color: #808080;
}

.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;
}