/*{calendarBody}div.calendar-wrapper
***********************************/
	div.calendar-wrapper {
		/*width: 603px; Width of a day * 7 + total of horizontal borders*/
		font-size: .75em;
	}
	
	div.calendar-wrapper div.day {
		width: 85px;
		float: left;
		border: 1px solid black; /*This color will change*/
		border-bottom: none;
		border-right: none;
	}
	
	div.calendar-wrapper div.calendar-footer {
		clear: both;
	}
	
	div.calendar-wrapper div.day.beginning-of-week {
		clear: both;
	}
	
	div.calendar-wrapper div.day.end-of-week {
		border-right: 1px solid black; /*This color always matches the above*/
	}
	
	div.calendar-wrapper div.day.bottom-row {
		border-bottom: 1px solid black; /*This color always matches the above*/
	}

/*{calendarBody}div.calendar-header
**********************************/
	div.calendar-header div.day {
		text-align: center;
		line-height: 1.5em; /*Using line height rather than a fixed height keeps the text centered vertically*/
	}

	div.calendar-header div.month-selector {
		margin-bottom: .5em;
		text-align: center;
	}

	div.calendar-header div.month-selector select {
		margin-right: .5em;
	}

/*{calendarBody}div.calendar-body
********************************/
	div.calendar-body {
		clear: both;
	}
	
	div.calendar-body div.day {
		height: 85px;
	}
	
	div.calendar-body div.weekend-day {
		background-color: #CCC;
	}
	
	div.calendar-body div.inactive-day,
	div.calendar-body div.inactive-day a {
		color: #999 !important;
	}
	
	div.calendar-body div.day div.day-contents {
		margin: .15em;
	}
	
	div.calendar-body div.day a.day-contents {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
	}
	
	div.calendar-body div.day a.day-contents.active {
		background-color: #AAA;
		color: white !important;
	}
	
	div.calendar-body div.day a.day-contents.active:hover {
		text-decoration: none !important;
	}
	
	div.calendar-body div.day a.day-contents span {
		position: absolute;
		top: .15em;
		left: .15em;
	}
