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

   CCC Calendar Table style sheet
   Author: Zeina Nasreldine
   Date:   Feb 22, 2010

   Filename:         calendar.css
   Supporting Files: 

*/


table.calendar	{
				border-collapse: separate;
				border-spacing: 5px;
				font-size: 8px;
				}
				
table caption	{
				text-align:left;
				font-size: 16px;
				letter-spacing: 3px;
				margin-left: 5px;
				}
				
table.calendar col	{width: 14%;}
			
table.calendar col.weekends	{background-color: rgb(255,232,232);}


table.calendar thead	{
						background-color: red;
						color: white;
						letter-spacing: 5px;
						height: 5%;
						}
						
table.calendar tbody	{
						height: 19%;}
						
table.calendar td	{
					border: 1px solid gray;
					vertical-align: top;
					}
					
					
table.calendar h3	{
					font-size: 8px;
					margin: 0px;
					padding: 0px;
					}
					
dl, dd, dt	{
			margin: 0px;
			padding: 0px;
			}
			
			
						
						



