/* overall table */
#calendar table {
border:1px solid #fff;
padding: 0;
margin:20px;
}

/* the day headers across the top */
#calendar th {
background: #565;
color: #fff;
margin: 3px;
padding: 2px 5px;
}

/* how days this month will look, make dates appear in top right */
#calendar td {
	background: #eee;
	color: #000;
	padding: 2px;
	margin:0;
	height:30px;
	text-align:right;
	vertical-align:top;
	border:1px solid #fff;
}

/* this day is a start or ende event */
#calendar td.hasStartEndEvent{
	background: #ff0000 url('korbhalb.gif') no-repeat center; 
	}
	
/* this days have an event */
#calendar td.hasEvent{
	background: #ffff00 url('korb.gif') no-repeat center;
	}

#calendar td.noEvent{
	background: #eee center;
	}

/* these are the days falling outside this month */
#calendar td.notInMonth {
	background: #999;
	}

