/* MyCalendar.css
	Author:	Greg Lister
	Purpose:Provide styles for automatic calendar
	History:21/4/05 Created
*/

/* I have not built a body style or any other page-type style - this is up to you */
BODY 
{
}
/* This class will be used to format the table used for the calendar */
.calendar 
{
	background-color: Silver;
}
/* This class will be used for the table cell with available days */
.avail  
{
	background-color: green; 
	color: white; 
	background-position: center center
}
/* This class will be used for the table cell where classes are filled */
.filled 
{
	background-color: red; 
	color: white; 
	background-position: center center
}
/* I have used a style for table-headers.  You can use styles for any parts */
th 
{
	font-size: x-small;
	border-right: maroon thin solid;
	border-top: maroon thin solid;
	border-left: maroon thin solid;
	border-bottom: maroon thin solid;
}
