/*
   New Perspectives on HTML and XHTML 5th Edition
   Tutorial 5
   Case Problem 2

   CCC Calendar Table style sheet
   Author: Bradley Forney
   Date:   2013-01-16

   Filename:         calendar.css
   Supporting Files: 

*/

.calendar{
	font-size:		8px;
}

.calendar td{
	border-spacing:		5px;
	border-collapse:	separate;
	border:			1px gray solid;
	vertical-align:		top;
}

caption{
	caption-side:		top;
	text-align:		left;
	font-size:		16px;
	letter-spacing:		3px;
}

.calendar td{
	width:			14%;
}

.weekends{
	background:		rgb(255,232,232);
}

thead th{
	background:		red;
	color:			white;
	letter-spacing:		5px;
}
	
thead tr{
	height:			5%;
	
}

tbody tr{
	height:			19%;
	
}

h3{
	font-size:		8px;
	margin:			0px;
	padding:		0px;
}

dl, dt, dd{
	margin:			0px;
	padding:		0px;
}