body {
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-family: "Courier New", courier, monospace;
	font-size: 24px;
	font-weight: bold;
	color: #FFF;
}

#canvas {
	background-image: url(../images/background.gif);
	background-color: #6b88ff;
	background-repeat: repeat-x;
	background-position: 0 0;
	width: 6784px;
	height: 462px;
	border: 1px solid black;
}

div.sprite {
	position: absolute;
	overflow: hidden;
}

div.ground-sprite {
	background-image: url(../images/ground.gif);
	background-repeat: repeat-x;
	background-position: 0 0;
}

div.tower-sprite {
	height: 32px;
	width: 32px;
	background-image: url(../images/tower.gif);
	background-position: 0 0;
	background-repeat: repeat-y;
}

div.coin-sprite {
	height: 48px;
	width: 48px;
	background-image: url(../images/coin.gif);
	background-position: 0 0;
	background-repeat: no-repeat;
}

div.brick-sprite {
	height: 48px;
	width: 48px;
	background-image: url(../images/brick.gif);
	background-position: 0 0;
}

div.question-sprite {
	height: 48px;
	width: 48px;
	background-image: url(../images/question.gif);
	background-position: 0 0;
	z-index: 1;
}

div.pipe-sprite {
	width: 64px;
	background-image: url(../images/pipe.gif);
	background-repeat: repeat-y;
	background-position: 0 0;
}

div.block-sprite {
	height: 48px;
	width: 48px;
	background-image: url(../images/block.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	z-index: 1;
}

div.mushroom-sprite {
	width: 48px;
	height: 48px;
	background-image: url(../images/mushroom.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}


div.goomba-sprite {
	width: 32px;
	height: 32px;
	background-image: url(../images/goombas.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

div.koopa-sprite {
	width: 64px;
	height: 64px;
	background-image: url(../images/koopas.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

div.character-sprite {
	width: 48px;
	height: 48px;
	background-image: url(../images/mario.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	z-index: 10;
}

div.character-sprite.super {
	width: 64px;
	height: 64px;
	background-image: url(../images/super_mario.gif);
}

