/**
 * "Click-o-tris" game
 *
 * @package Games
 */

#board {
	position: relative;
	background: #33aaff;
	border: 3px solid #ccc;
	width: 246px;
	height: 390px;
	float: left;
	margin-right: 8px;
}
.theme2 #board {
	border-color: #fff;
}
.board-message, a.board-message {
	width: 240px;
	height: 384px;
	line-height: 384px;
	position: absolute;
	text-align: center;
	font-weight: bold;
	font-family: sans-serif;
	font-size: 60px;
	color: #000;
	display: none;
	z-index: 10000;
	text-decoration: none;
}
#board .tile {
	position: absolute;
}
.board-right {
	float: left;
	width: 340px;
}
.results div {
	margin-bottom: 6px;
}
#start, #start:visited, #pause, #pause:visited {
	color: #000;
}
#score, #level, #topscore {
	font-weight: bolder;
	margin-left: 6px;
}
