/*
   New Perspectives on HTML and XHTML 5th Edition
   Tutorial 5
   Case Problem 1

   Sudoku Puzzle Table Style Sheet
   Author: Bradley Forney
   Date:   2013-01-14 

   Filename:         stable.css
   Supporting Files: green.jpg, gold.jpg

*/

.spuzzle{
	border-collapse:	collapse;
}

.subTable{
	border-collapse:	collapse;
}

.spuzzle td{
	border:			5px outset gray;
}


.spuzzle th{
	font-size:		8px;
	color:			gray;
}

.spuzzle tbody th{
	height:			40px;
}

.subtable td{
	font-size:		20px;
	color:			blue;
	width:			40px;
	height:			40px;
	text-align:		center;
	vertical-align:		center; /*Is this correct?*/
	border:			1px solid black;
}

.goldBox td{
	background:		url(gold.jpg) no-repeat center;
}

.greenBox td{
	background:		url(green.jpg) no-repeat center;
}
