/* CSS Document ********************************************
Calendar Classes - Morning By Morning 	(medium format size)

These classes style the Calendar component currently found on 
the home page and the calendar year page. This one formats the 
latter. 

There are two versions of this same set of classes to enable
two different stylings of Calendar output.

calendarHeader  	The table cells containg header parts of the 
					calendar - i.e. the Year and the Month Name.
calendarToday 		The date cell corresponding to "today"
calendar 			All table cells other than those covered by 
					calendarHeader and calendarToday

partial color listing:
#CC9966 - light taupe
#996600 - brown
************************************************************/
.calendarHeader {
	font: normal bold 11px/11px lucida, helvetica, sans-serif; 
	margin: 0px;
	color: #007777;
	padding: 0px 0px 0px 3px; 
}
.calendarToday {
	font: normal normal 11px/11px lucida, helvetica, sans-serif;
	color: red; 
	margin: 3px;
	padding: 3px;
}
.calendar {
	font: normal normal 11px/11px lucida, helvetica, sans-serif; 
	margin: 3px;
	padding: 3px;
}
