/**
 * SameGame
 *
 * @package Games
 */

#board {
	float: left;
 	border: 3px solid #808080;
	position: relative;
	background: #000;
}
.theme2 #board {
	border-color: #ccc;
	background-color: #fff;
}
#gameOver, #gameWin {
	position: absolute;
	top: 180px; /* rows * height / 2 */
	width: 480px; /* cols * width */
	z-index: 1000;
	display: none;
	text-align: center;
	font-weight: bolder;
	color: #ffffff;
	font-size: 30px;
}
.theme2 #gameOver, .theme2 #gameWind {
	color: #000;
}
#board table {
	border-collapse: separate;
}

.t_0, .t_1, .t_2, .t_3, .t_4, .t_5, .t_6, .s_0, .s_1, .s_2, .s_3, .s_4, .s_5, .s_6 {
	width: 24px;
	height: 24px;
	border-bottom:1px solid #ffffff;
	border-right:1px solid #ffffff;
	z-index: 1;
}
.t_0, .t_1, .t_2, .t_3, .t_4, .t_5, .t_6 {
	cursor: default;
}
.t_0 {
	background: #000000;
	border-bottom: 1px solid transparent;
	border-right: 1px solid transparent;
}
.theme2 .t_0 {
	background-color: #fff;
}
.t_1 {
	background:#1D86D9;
}
.t_2 {
	background:#85C64E;
}
.t_3 {
	background:#EB662D;
}
.t_4 {
	background:#DDC139;
}
.t_5 {
	background:#DA3A44;
}
.t_6 {
	background:#C632A2;
}
.s_1, .s_2, .s_3, .s_4, .s_5, .s_6{
	cursor: pointer;
}
.s_0 {
	background:#000000;
}
.s_1 {
	background:#6FB6EB;
}
.s_2 {
	background:#BADF9B;
}
.s_3 {
	background:#F4AA8A;
}
.s_4 {
	background:#EDDD92;
}
.s_5 {
	background:#EA9096;
}
.s_6 {
	background:#DF81C8;
}

#results{
	float:left;
	margin-left:20px;
}

#score, #topscore {
	font-weight: bolder;
}

.game-samegame-ad {
	margin-top: 28px;
	float: right;
}
