/* Calendar CSS */
.calendar {
	margin: 0;
	padding: 0;
	font-size: 12px;
	}
.calendar caption {
	margin: 0;
	padding: .3em 0;
	font-weight: bold;
	}
.calendar th {
	border-bottom: 1px solid #ccc;
	font-weight: normal;
	background: #ccc;
	width: 25px;
	height: 23px;
	text-align: center;
	}
.calendar td {
	border: 0;
	background: #95DC94;
	width: 25px;
	height: 23px;
	text-align: center;
	}
.calendar a {
	color: #000;
	text-decoration: none;
	}

.calendar td.today {
	background: #ffc;
	}
.calendar td.highlighted {
	background: #FF8080;
	}
.calendar td.highlighted_start {
	background-image: url(../images/calendar_highlight_start.gif);
	background-repeat: no-repeat;
	}
.calendar td.highlighted_end {
	background-image: url(../images/calendar_highlight_end.gif);
	background-repeat: no-repeat;
	}
.calendar td.highlighted_dup {
	background-image: url(../images/calendar_highlight_dup.gif);
	background-repeat: no-repeat;
	}

table.calendar td.pad {
	color: #999;
	background: transparent;
	}
	
#sunday, #saturday {
	background: #f0f0f0;
	}
	
#year {
	padding: 0;
	width: 100%;
	list-style: none;
	}
#year:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}
#year li {
	float: left;
	padding: 0 1em .5em 0;
	height: 200px;
	}