html, body { 
		background-color: #ECECEC;
		font-family: verdana, arial, sans-serif; 
	}
	
	/* Fuer IE <= 6 */
	div#calendar {
		text-align: center;
	}

	div#calendar table thead th{ 
		font-weight: bold; 
		font-size: 0.75em; 
		color: #BFBFC1; 
		text-align: center;
		background-color: #112A5D;
	}
	
	div#calendar table thead th.weekday{ 
		font-weight: bold; 
		font-size: 0.70em; 
		color: #112A5D; 
		text-align: center;
		background-color: #CCD2D8;
		border: solid #112A5D 1px;
	}
  	
	div#calendar table tbody td{ 
		font-weight: normal; 
		font-size: 0.7em;
		padding-left: 5px; 
		padding-right: 5px; 
		color: #0E224B; 
		text-align: right;
		border: solid #CCD2D8 1px;
	}
	
	div#calendar table tbody td.weekend{ 
		color: #9A2525;
		font-weight: bold;
	}
	
	div#calendar table tbody td.today{
		background-color: #A7B5C7;
	}
	
	div#calendar table{
		border-collapse: collapse;
		border: solid #112A5D 2px;
		padding: 0;
		margin-left:auto;
		margin-right:auto;
		background-color: #F6F6F6;
	}