<style>
    <!--
		  New Perspectives on HTML and CSS
		  Tutorial 5
		  Case Problem 4

		  conference: Hamilton Conference Center
		  Author: David Katelansky
		  Date:   06/10/2015

		  Filename:         schedule.css		
        -->
					
		table.schedule
	       {
		   border: 1px solid black;
		   width: 100%;			  
	    }
				
		table.schedule caption
		{
		   height: 5%;
		   font-size: 2em;
		   color: rgb(00, 00, CD);
		}
		
		table.schedule thead tr
		{
		   color: blue;
		   background-color: white;
		   font-size: 1em;
		   border: 1px solid cyan;  
		}
		
		table.schedule tr td
		{
		   vertical-align: top;
		   border: 1px solid blue;		   
		   border-spacing: 2px;
		}
		
		table.schedule tr th
		{
		   vertical-align: top;
		   border: 1px solid blue;		   
		   border-spacing: 2px;
		   background-color: white;
		}
		
		table.schedule tbody
		{
		   background-color: AliceBlue;
		}
		
		table.schedule colgroup col.MitchellTheatre
		{		   
		   width: 10px;            		   
		}
</style>	 