/**
 * Simple
 *
 * @package Games
 */

.game-simple {
	position: relative;
}
#board, #gameOver {
	width: 500px;
	height: 400px;
	line-height: 400px;
}
#board {
	float: left;
	position: relative;
	background: #4488ff;
	margin-right: 5px;
}
#door {
	position: absolute;
	width: 28px;
	height: 28px;
	background:url(/img/simple/door.png) no-repeat;
}
#me, #dead {
	position: absolute;
	width: 22px;
	height: 22px;
	background: white;
}
#me {background: url(/img/simple/me.png) no-repeat; }
#dead {
	display: none;
	background:url(/img/simple/dead.png) no-repeat;
}
#gameOver {
	position: absolute;
	text-align: center;
	font-weight: bold;
	font-family: sans-serif;
	font-size: 80px;
	color: #000;
	display: none;
}
a#gameOver:hover { text-decoration: none; }
.enemy {
	position: absolute;
	width: 14px;
	height: 14px;
	background: red;
}
.enemyR{background:url(/img/simple/enemyR.png) no-repeat;}
.enemyL{background:url(/img/simple/enemyL.png) no-repeat;}
.enemyU{background:url(/img/simple/enemyU.png) no-repeat;}
.enemyD{background:url(/img/simple/enemyD.png) no-repeat;}
#results {
	float: left;
}
#score, #topscore {
	font-weight: bolder;
}
.game-simple-ad {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 336px;
	height: 280px;
}
#rules code {
	color: #fff;
}
