/* calendar.css: style sheet for calendar */

/* Last modified: September 12, 2008 */

span.date {
	font-weight: bold;
	font-size: 10pt;
}

table.calendar { 
	background-color: white;
	border: inset;
	border-color: red;
	border-width: 4px;
	height: 80%;
	margin-left: 10px;
	margin-right: 30px;
}

td.day { 
	font-size: 9pt;
	border-color: black;
	background-color: cyan;
	vertical-align: top;
}

td.month {
	font-size: 140%;
	width: 11em; 
	text-align: center; 
	font-weight: bold; 
	color: #5a130a;
}

td.today {			/* Use yellow for today's cell */
	font-size: 9pt;
	border-color: black;
	background-color: #ffffdd;
	vertical-align: top;
}

td.othermonth {			/* Use gray for other month cell */
	font-size: 9pt;
	border-color: black;
	background-color: #cccccc;
	vertical-align: top;
}

th.daynames { 
	background-color: #ccffff;
	font-size: 125%;
	height: 7%;

}

tr.calendar { 
	background-color: cyan;
	vertical-align: top;
}

