html, body {
	background-color:#212121;
	color:#fff;
	font-family:arial,helvetica;
}
a  {
	color: #fff;
	text-decoration: none;
}
a:hover  {
	color: #A4A4A4;
}

h1, h2, p {
	text-align: center;
}

#infornations {
	float: right;
	margin-left: 30px;
	padding: 20px 0;
	width: 300px;
	background-color: #000;
	text-align: center;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
}

#infornations select {
	margin: 0 0 10px 0;
	padding: 5px;
}
#infornations input[type=button] {
	cursor: pointer;
	margin-top: 12px;
	background: transparent url(button.png) no-repeat top left;
	width: 274px; height: 51px;
	text-align: center;
	color: #fff;
	font-size: 20px;
	border: none;
}
#infornations input:hover {
	background-position: 0 -49px;
}

#tictactoe {
	margin: 0 auto;
	width: 760px;
}

#tictactoe table {
	background: transparent url(grid.gif) no-repeat center center;
}

#tictactoe td {
	width: 150px; height: 150px;
	cursor: pointer;
}

#tictactoe td.cross { background: transparent url(cross.png) no-repeat center center; }
#tictactoe td.circle { background: transparent url(circle.png) no-repeat center center; }
#tictactoe td.cross.victory { background-image: url(crossr.png) }
#tictactoe td.circle.victory { background-image: url(circler.png) }