/* 
	Calendar Formatting
	
	This stylesheet information defines the display properties of the event calendar
	used on the website. Specifically, this defines the colors, borders, and text
	properties of the calendar.

	Date:		8-1-2005
	Author:		Mike McMahon
*/

table.calendar{
	width: 100%;
	margin-top: 20px;
	empty-cells: hide;
	border-collapse: separate;
	table-layout: fixed;
	border-spacing: 0px 3px;
}

table.calendar tr{
	height: 60px;
}

table.calendar td{
	text-align: left;
	vertical-align: top;
	border: 1px solid #E2E9EE;
	padding: 1px;
	width: 14.28%;
}

table.calendar tr.weekday_names{
	height: auto;
}

table.calendar tr.weekday_names td{
	text-align: center;
	width: 14.28%; 
	padding: 6px;
	border: 0px hidden;
	border-bottom: 2px solid #B1C6D3;
}

table.calendar td.current_date{
	border-color: #5D89A4;
	background-color: #EAF0F3;
}

table.calendar div.day_number{
	font-size: 12px;
	text-align: left;
}

table.calendar div.day_event{
	font-size: 10px;
	text-align: left;
	padding: 2px 0px;
	background-color: #EAF0F3;
	border: 1px solid #5D89A4;
	margin: 2px;
}

table.calendar ul{
	margin-left: 0px;
	padding-left: 18px;
}
