#calendar {
	border-collapse: collapse;
	border-spacing: 0;
	background: white;
	color: black;
	margin: 0 auto;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
}

div.fourWeek {
	height: 96px; /* 16 x 6 */
	width: 182px;  /* 26 x 7 */
}

div.fiveWeek {
	height: 112px; /* 16 x 7 */
	width: 182px;  /* 26 x 7 */
}

div.sixWeek {
	height: 128px; /* 16 x 8 */
	width: 182px;  /* 26 x 7 */
}

#calendar div.day {
	height: 15px;
	width: 25px;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	float: left;
	text-align: center;
}

#calendar div.row {
	clear: both;
}

#calendar #month {
	background: #000;
	color: #666;
	height: 16px;
	font-weight: bold;
	text-align: center;
}

#calendar #days div.day {
	background: #c68f24;
	color: black;
}

#calendar div.past {
	background: #377D35;
	color: #bdb7de;
	text-align: center;
	font-size: 0.9em;
}

#calendar div.todaysEvent {
	background: #faa;
	color: #000;
	font-weight: bold;
	text-align: center;
	font-size: 0.9em;
}

#calendar div.hasEvent {
	background: #bdb7de;
	color: #000;
	font-weight: bold;
	text-align: center;
	font-size: 0.9em;
}

#calendar div.future {
	background: #4fa74d;
	color: #444;
	text-align: center;
	font-size: 0.9em;
}

#calendar div.today {
	background: #F3EA88;
	font-weight: bold;
	color: black;
	text-align: center;
	font-size: 0.9em;
}

#calendar div.null {
	background: #ffa;
}

#calendar div a { color: black; }
#calendar div a:link { color: black; }

