/**
 * Puzzle 15
 *
 * @package Games
 */

#board {
	position: relative;
	left: 0px;
	top: 0px;
 	border: 3px ridge #3080D0;
	float: left;
	width: 186px;
	height: 186px;
}
.tile{
	position:absolute;
	cursor: pointer;
	height: 45px;
	width:45px;
}
#p0{
	display: none;
}
#gameOver{
	position:absolute;
	left:0px;
	top:5px;
	text-align: center;
	display:none;
}
#controls{
	margin-bottom:2px;
}
#results{
	float: left;
	margin-left: 12px;
}
#time, #toptime, #score, #topscore{font-weight:bolder;margin-left:10px;margin-right:30px;}

#rulesBox{width:400px;margin-top:25px;}
