	html, body { 
		background-color: #ffffff;
		font-family: verdana, arial, sans-serif;
	}

	/* Fuer IE <= 6 */
	div#calendar {
		text-align: center;
	}
	/* Tabellenkopf (Monat & Jahr) */
	div#calendar table thead th{ 
		font-weight: bold; 
		font-size: 0.75em; 
		color: #ffffff; 
		text-align: center;
		background-color: #005a91;
	}
	/* Farbe Tabellenkopf mit Hintergrundfarbe & Textfarbe */
	div#calendar table thead th.weekday{ 
		font-weight: bold;
		font-size: 0.70em; 
		color: #00a3a3; 
		text-align: center;
		background-color: #CCD2D8;
		border: solid #CCD2D8 2px;
	}
  	/* Tabelleninhalt mit Farbe und Größe */
	div#calendar table tbody td{ 
		font-weight: bold; 
		font-size: 0.7em;
		padding-left: 4px; 
		padding-right: 1px; 
		color: #000000; 
		text-align: right;
		border: solid #CCD2D8 2px;
	}
	/* Farbe der Wochenendtage */
	div#calendar table tbody td.weekend{ 
		color: #e92525;
		font-weight: bold;
	}
	/* Tagesmarkierung */
	div#calendar table tbody td.today{
		background-color: #00a3a3;
	}
	/* Tabellenkopf - Rahmen */
	div#calendar table{
		border-collapse: collapse;
		border: solid #005a91 2px;
		padding: 0;
		margin-left:auto;
		margin-right:auto;
		background-color: #F6F6F6;
	}
