/**
 * "Tents" game
 *
 * @package Games
 */

#board {
	float: left;
	position: relative;
}
#board table {
	border-collapse: collapse;
}
#board tr {
	height: 32px;
}
#board td {
	width: 32px;
	height: 32px;
	border: 1px solid #ffffff;
	background: #8ffd7d;
	vertical-align: top;
	line-height: 1px;
}
#board th {
	text-align: center;
	border: none;
	width: 32px;
	height: 32px;
}
#gameOver {
	position: absolute;
	display: none;
}
#boardSize {
	margin: 0px 0px;
}
.game-tents-ad {
	float: right;
}
