/**
 * Nonograms
 *
 * @package Games
 */

#board {
	position: relative;
	margin-top: 4px;
	float: left;
	margin-right: 20px;
}
#board table {
	border-collapse: collapse;
	border: 2px solid #404040;
	-moz-user-select: none;
	background: #ffffff;
	line-height: 10px;
}
#board tr{
	height: 18px;
}
#board td, #board th {
	border: 1px solid #404040;
	width: 19px;
}
#board th div {
	cursor: pointer;
}
#board th {
	padding: 1px;
}
#board th span {
	cursor: pointer;
	padding: 0 3px;
}
#board th {
	vertical-align: middle;
	text-align: right;
}
#board tr.nums {
	border-bottom: 2px solid #404040;
}
#board tr.nums th {
	text-align: center;
	vertical-align: bottom;
	border-bottom: 2px solid #404040;
}
#board th div {
	cursor: pointer;
	padding: 3px 0;
}
#board .c5 {
	border-left: 2px solid #404040;
}
#board .r5 {
	border-top: 2px solid #404040;
}
#board .cr5 {
	border-left: 2px solid #404040;
	border-top: 2px solid #404040;
}
#board .bt {
	border-top: 2px solid #404040;
}
#gameOver {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 85px;
	height: 95px;
}
.nums {
	font-weight: bolder;
	cursor: default;
	color: #000;
}
.numdone {
	color:#ff0000;
}
.linia {
	background: #D1E2EF;
}
.c0 {
	background: url('/img/nonograms/c0.gif') no-repeat;
}
.c1 {
	background: url('/img/nonograms/c1.gif') no-repeat;
}
.c2 {
	background: url('/img/nonograms/c2.gif') no-repeat;
}

.game-nonograms5-ad {
	float: right;
}
.game-nonograms10-ad {
	float: right;
}
.game-nonograms15-ad  {
	float: right;
}
