/* calendar.css	*/
/* last updated 14 June 2009 by LMP */
.cal_table {
	background: #FFFFCC; /* color of existing site */
	background-color: #FFFFCC;
    border-collapse: collapse; /* IE */
	border-spacing: 0; /* Other brwosers */
    border-top: 1px solid #708090; /* slategray */
	border-right: 3px solid #708090;
	border-bottom: 3px solid #708090;
	border-left: 1px solid #708090;
	color: #00008B; /* color of existing site, a dark blue */
	font-family: "Lucida Sans Unicode", "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;
	line-height: 100%;
	width: 800px;
	}
.cal_table th {
	border: 1px solid  #708090; /* slategray */
	width: 14%; /* 100% divided by 7, rounded down */
}
.cal_table td {
	border: 1px solid  #708090; /* slategray */
	padding: 6px;
}
.cal_table p {
	padding: 0;
	margin: 6px 0;
}
.cal_month_name {
	font-size: 18pt;
	font-weight: 800;
	line-height: 200%;
	text-align: center;
}
.cal_day_name {
	font-size: 12pt;
	font-weight: 400;
	line-height: 125%;
	text-align: center;
}
/* default day cell style */
.cal_day_number {
	font-size: 18pt;
	font-weight: 800;
	text-align: right;
	vertical-align: top;
}
/* 'today' cell style */
.cal_today_number {
	background: #ECF1EF; /* a pale blue */
	background-color: #ECF1EF;
	color: #0000FF; /* blue */
	font-size: 18pt;
	font-weight: 800;
	text-align: right;
	vertical-align: top;
}
/* event day cell style */
.cal_event_number {
	color: #0000FF; /* blue */
	font-size: 18pt;
	font-weight: 800;
	text-align: right;
	vertical-align: top;
}
.cal_event_text {
	color: #00008B; /* a dark blue */
	font-size: 9pt;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	text-align: left;
}
.cal_birthday_text { /* used in 'javascripts/event_list.js'*/
	color: #FF0000;	/* red */
	font-size: 9pt;
	font-style: normal;
	font-weight: 400;
	text-align: left;
	line-height: 100%;
}
.cal_nav_text {
	font-size: 12pt;
	font-style: normal;
	font-weight: 400;
	padding: 6px 0;
	text-align: center;
}
