body {
	margin: 0;
	padding: 0;
}

h1 {
	text-align: center;
}

label.editable {
	text-decoration: underline;
}




/* CALENDAR */
table.calendar {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
table.calendar th.month,
table.calendar th.day,
table.calendar div.event :hover {
	background-color: #990000;
	color: #FFFFFF;
}
table.calendar th.day {
	text-align: center;
	width: <?=100/7?>%; 
}
table.calendar td.empty {
	background-color: #999999;
}
table.calendar td.today {
	background-color: #00FFFF;
}
table.calendar td.day {
	background-color: #EEEEEE;
}
table.calendar td.today,
table.calendar td.day {
	height: 65px;
	width: 90px;
	vertical-align: top;
}
table.calendar div.date {
	text-align: right;
	font-size: 10pt;
	font-weight: bold;
}

table.calendar div.event {
	text-align: left;
	font-size: 10pt;

	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 90px;
}
table.calendar div.event a {
	color: #990000;
}