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

   Tables Style Sheet
   Author: Mark Hawks
   Date:   04-06-2012

   Filename:         tables.css
   Supporting Files: 

*/

table.used	{border: 10px solid rgb(108,164,223); border-collapse: collapse; font-family: Arial, Helvetica, sans-serif; font-size: 1.em; width: 100%}

table.used th, table.used td
                   {border: 1px solid gray}

table.used thead        {color: rgb(40,50,100); background-color: rgb(100,121,214)}

table.used col.firstCol {background-color: rgb(255,255,255); width: 3%}

table.used col.dayCols  {width: 13%}

table.used thead tr {height: 20px}

table.used tbody tr {height: 30px}

table.used tbody td {vertical-align: top; padding: 10px}

table.used caption {caption-side: top; text-align: center}