/*

	Dave Hill's
	Sudoku Game Stylesheet
	----------------------
	
	The design for the sudoku cells, this css file controls
	all of the different styles for the sudoku game. Mostly
	cell and border sizes as fonts are controlled in a main
	switchable CSS file

*/
#sudoku{
	width:500px;
	margin:0 auto;
}

#sudoku div {
	background:#fff;
	border:1px solid #000;
	width:51px;
	height:45px;
	float:left;
	font-family: Verdana;
	font-size:2.4em;
	text-align: center;
	vertical-align: middle;
	margin-top:0px;
	}
#sudoku .redge
{
	border-right: 4px solid #101010;
}
#sudoku .bedge
{
	border-bottom: 4px solid #101010;
}
#sudoku .tedge
{
	border-top: 4px solid #101010;
}
#sudoku .ledge
{
	border-left: 4px solid #101010;
}
#sudokuStatus{
	text-align: center;
}

#sudoku .cellClear{
	background-color: #ffffff;
}

#sudoku .cellSelected{
	background-color: #f5ffb3;
}

#sudoku .cellCorrect{
	background-color: #98fb98;
}

#sudoku .cellIncorrect{
	background-color: #f08080;
}
