/*
   New Perspectives on HTML and XHTML 5th Edition
   Tutorial 5
   Case Problem 1

   Sudoku Puzzle Table Style Sheet
   Author: David Oberlander
   Date:   05/05/09

   Filename:         stable.css
   Supporting Files: green.jpg, gold.jpg

*/


table.spuzzle 	{border-collapse: collapse;}
table.spuzzle td	{border: 5px outset gray;}
table.spuzzle th	{font-size: 8px; color: gray;}
table.spuzzle tbody th	{height: 40px;}

table.subTable	{border-collapse: collapse;}
table.subTable td	{font-size: 20px; color: blue; width: 40px; height: 40px; text-align: center; vertical-align: middle; border: 1px solid black;}

td.goldBox td	{background: url(gold.jpg) no-repeat center;}
td.greenBox td	{background: url(green.jpg) no-repeat center;}