/**
 * Mahjong 2D Game
 *
 * @package Games
 */

#board {
	position: relative;
	border: 1px solid #bca67c;
	float: left;
}
#board table{
	border-collapse: collapse;
	border-style: none;
}
#board tr {
	height: 45px;
}
#board tr.outside {
	height: 20px;
}
#board td {
	width: 36px;
	padding: 0px;
	margin: 0px;
	background-repeat: no-repeat;
	background-position: 0 0;
	line-height: 1px;
	font-size: 1px;
}
#board td.outside {
	width: 20px;
	background:none;
}
#board td img {
	height: 40px;
	width: 36px;
	border: 0;
	margin-top: 2px;
}
.screen{
	position:absolute;
	top:0px;
	margin:20px;
	display:none;
	border:3px solid #bca67c;
	background:#fff;
	text-align:center;
	z-index:1000;
}
.screentext{
	margin: 150px auto 80px auto;
	font-size: 60px;
	color: #000;
	font-weight: bolder;
}
#results{
	float:left;
	margin-left:8px;
}
#timeLeft, #tilesLeft, #level, #score, #topscore{
	font-weight:bolder;
}
.game-mahjong2d-ad {
	margin-top: 20px;
	float: right;
}
