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

   Sudoku Puzzle Table Style Sheet
   Author: Zeina Nasreldine	
   Date:   Feb 22, 2010

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

*/


table.spuzzle	{border-collapse: collapse;}
table.subTable	{border-collapse: collapse;}




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

table.subTable th	{
					font-size: 8px;
					font-color: gray;
					}
			
table.subTable tr td	{
						font-size: 20px;
						font-color: blue;
						width: 40px;
						height: 40px;
						vertical-align: middle;
						text-align:center;
						border: 1px solid black;						
						}
					
					
.goldBox table td	{
					background: url(gold.jpg) center no-repeat;
					background-position: 50%;
					}
					
.greenBox table td	{
				background: url(green.jpg) center no-repeat;
				}
				
