/**
 * Flip game
 *
 * @package Games
 */

#arena {
	position: relative;
 	border: 1px solid #3080D0;
	padding-right: 1px;
	padding-bottom: 1px;
	float:left;
	width:300px;
	height:300px;
	background: #000;
}
.theme2 #arena {
	background: #fff;
}
.tile {
	position: absolute;
	z-index: 1;
}
.tile, .tile0, .tile1, .tile2, .tile3 {
	width: 30px;
	height: 30px;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='/img/flip/tile1.png');
}
.tile[class] {
	background: url(/img/flip/tile1.png);
}
#infoBox{
	position: absolute;
	top: -20px;
	font-size: 12px;
}
#timeBox{
	float: left;
	position: relative;
	width: 18px;
	height: 301px;
	border: 1px solid #3080D0;
	border-left: none;
}
#timeBack{
	position: absolute;
	width: 16px;
	top: 1px;
	left: 1px;
	height: 299px;
	background-color: #3080D0;
}
#time {
	position: absolute;
	width: 18px;
	height: 300px;
	background-color: #000000;
}
.theme2 #time {
	background-color: #fff;
}
#results {
	float:left;
	margin-left:12px;
}

#score, #topscore {
	font-weight: bolder;
}
.msg {
	font-weight: bold;
	position: absolute;
	font-size: 60px;
	display: none;
	z-index: 1000;
	text-align: center;
	line-height: 300px;
	height: 300px;
	width: 300px;
	cursor: pointer;
}
.game-flip-ad {
	float: right;
	height: 250px;
	width: 300px;
}
