/**
 * "Hashi-o-kakero" game
 *
 * @package Games
 */

#game {
	padding-bottom: 12px;
}
#board{
	position: relative;
 	border: 1px solid #333;
	float: left;
	background: #0c7efc;
}
#sizes{
	float: left;
	margin-left: 12px;
}
.sea{
	width: 24px;
	height: 24px;
	position: absolute;
}
.tile{
	width: 24px;
	height: 24px;
	position: absolute;
	cursor: pointer;
}
div.tile{
	text-align: center;
	background: #ffffff;
	color: #000;
	font-weight: bold;
}
div.done{
	background: #346f45;
	color: #fff;
}
#gameOver{
	position: absolute;
	z-index: 10000;
	display: none;
}
