/**
 * "Virus" game
 *
 * @package Games
 */

#board {
	float: left;
	position: relative;
	margin: 5px 0 20px 0;
}
#board table {
	float: left;
	border: 16px solid #fff;
	border-collapse: separate;;
	background: white;
}
#board tr{
	height: 40px;
}
#board td{
	width: 40px;
}
.c0, .c1, .c2 {
	width: 40px;
	height: 40px;
}
.c0 {
	background: url('/img/virus/c0.gif') no-repeat;
}
.c1 {
	background: url('/img/virus/c1.gif') no-repeat;
}
.c2 {
	background: url('/img/virus/c2.gif') no-repeat;
}

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

#score{
	font-weight: bolder;
}
#gameOver {
	position: absolute;
	display: none;
	top: 100px;
	left: 94px;
	cursor: pointer;
	z-index: 10000;
}
#startGame {
	position: absolute;
	top: 96px;
	left: 88px;
	cursor: pointer;
	z-index: 10000;
}
.game-virus-ad {
	float: right;
	margin-top: 66px;
}
