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

   Tables Style Sheet
   Author: David Oberlander
   Date:   04/21/09

   Filename:         tables.css
   Supporting Files: 

*/

table.schedule {border: 10px outset rgb(153, 0, 153); border-collapse: collapse;
		font-family: Arial, Helvetica, sans-serif; font-size: 0.7em;
		width: 100%;}

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

table.schedule thead {color: white; background-color: rgb(203, 50, 203);}

table.schedule col.firstCol {background-color: rgb(255, 255, 192); width: 7%;}
table.schedule col.dayCols {width: 13%;}

table.schedule thead tr {height: 20px;}
table.schedule tbody tr {height: 30px;}

table.schedule tbody td {vertical-align: top; padding: 5px;}
table.schedule caption {caption-side: top; text-align: right;}