/*
   New Perspectives on HTML and CSS
   Final Project 
   
   Contact Us Style Sheet
   Author: Claudia Lindsay
   Date:   10/15/2015

   Filename:         contactsus.css
   Supporting Files: 

*/
/*Style rule for the calendar table*/
table.calendar {
   border-collapse: separate;
   border-spacing: 5px;
   font-size: 8px;
   margin: 20px auto 5px auto;
   padding: 40px;
   width: 650px;
   background: url(topleft.jpg) top left no-repeat,
			   url(topright.jpg) top right no-repeat,   
			   url(bottomleft.jpg) bottom left no-repeat,
			   url(bottomright.jpg) bottom right no-repeat,
			   url(top.jpg) top left repeat-x,
			   url(left.jpg) top left repeat-y,
			   url(right.jpg) top right repeat-y,
			   url(bottom.jpg) bottom left repeat-x;
}

table.calendar caption {
	padding-bottom: 10px;
	font-size: 18px;
	letter-spacing: 3px;
	width: 650px;
}

table.calendar col {
   width: 14%;
}

table.calendar col.weekends {
   background-color: rgb(255, 232, 232);
}

table.calendar thead tr {
   background-color: red;
   color: white;
   letter-spacing: 5px;
   font-weight: bold;
}

table.calendar thead tr {
	height: 5%;
}

table.calendar tbody tr {
   height: 19%;
}

table.calendar td {
   border: 1px solid gray;
   vertical-align: top;
}

table.calendar td h3 {
   font-size: 8px;
   font-weight: bold;
}