/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+                        Calendar JS/DOM  v3.0                         +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ Copyright (C) 2005-07 by Michael Loesler, http://derletztekick.de    +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

	html, body { 
		background-color: #FFFFFF;
	  font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif; 
	}
	
	/* Fuer IE <= 6 */
	div#calendar {
		text-align: center;
	}

	div#calendar table thead th{ 
		font-weight: bold; 
		font-size: 20px; 
		color: #ffffff; 
		text-align: center;
		background-color: #cc0000;
	}
	
	div#calendar table thead th.weekday{ 
		font-weight: bold; 
		font-size: 16px; 
		padding-top: 3px;
		padding-bottom: 2px;
		color: #333333; 
		text-align: center;
		background-color: #FFFFFF;
		border: solid #e0e0e0 1px;
	}
  	
	div#calendar table tbody td{ 
		font-weight: normal; 
		font-size: 16px;
		padding-left: 2px; 
		padding-right: 15px; 
		padding-top: 3px;
		padding-bottom: 2px;
		color: #000000; 
		text-align: right;
		border: solid #eeeeee 1px;
	}
	
	div#calendar table tbody td.weekend{ 
		color: #cc0000;
		font-weight: bold;
	}
	
	div#calendar table tbody td.today{
		background-color: #e0e0e0;
	}
	
	div#calendar table{
		border-collapse: collapse;
		border: 0;
		padding: 0;
		margin-left:auto;
		margin-right:auto;
		background-color: #FFFFFF;
	}
