.snake-body, #snake-head, #apple {
	width: 10px;
	height: 10px;
	position: absolute;
}

.snake-body {
	background: url(/img/snake/body.png) no-repeat 0 0 transparent;
}

#snake-head {
	background: url(/img/snake/head.png) no-repeat 0 0 transparent;
}

#apple, .snake-new {
	background: url(/img/snake/apple.png) no-repeat 0 0 transparent;
}

#board {
	float: left;
	position: relative;
	background: #4488ff;
}

#board, #gameOver, #pauseGame, #startGame {
	width: 400px;
	height: 300px;
	line-height: 300px;
}

#gameOver, #pauseGame, #startGame {
	position: absolute;
	text-align: center;
	color: #000;
	font-size: 2em;
	font-weight: bold;
	display: none;
	z-index: 10000;
}

#startGame {
	display: block;
}

#results {
	float: left;
	margin-left: 12px;
}

.game-snake-ad {
	float: right;
	width: 300px;
	height: 250px;
	margin-top: 50px;
}
