body,html
{
	width:100%;
	height:100%;
	margin:0px;
	padding:0px;
}
#board
{
	margin:5% auto;
	width:480px;
	height:480px;
	border:2px solid black;
	clear:both;
	padding:25px;
	background:#ccc url(images/wood.jpg);
	-moz-border-radius:10px;
	-o-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
}
.square
{
	float:left;
	width:12.5%;
	height:12.5%;
	text-align:center;
}
.square img
{
	height:85%;
	max-width:100%;
	padding:5px;
	cursor:pointer;
}
.white
{
	background-color:white;
}
.black
{
	background-color:black;
}
#turnDisplay
{
	position:absolute;
	top:10px;
	right:10px;
	padding:5px 10px;
	border:1px solid black;
	border-top:1px solid grey;
	border-left:1px solid grey;
	font-size:1.2em;
	background-color:#fff;
}