/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+                        Calendar JS/DOM  v3.0                         +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ Copyright (C) 2005-07 by Michael Loesler, http://derletztekick.de    +
+                                                                      +
+                                                                      +
+ This program is free software; you can redistribute it and/or modify +
+ it under the terms of the GNU General Public License as published by +
+ the Free Software Foundation; either version 2 of the License, or    +
+ (at your option) any later version.                                  +
+                                                                      +
+ This program is distributed in the hope that it will be useful,      +
+ but WITHOUT ANY WARRANTY; without even the implied warranty of       +
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        +
+ GNU General Public License for more details.                         +
+                                                                      +
+ You should have received a copy of the GNU General Public License    +
+ along with this program; if not, write to the                        +
+ Free Software Foundation, Inc.,                                      +
+ 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.            +
+                                                                      +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/


	/* Fuer IE <= 6 */
	div.calendarDisplay {
		text-align: center;
	}

	div.calendarDisplay table thead th{ 
		font-weight: bold; 
		font-size: 8pt;
		color: #2D739D; 
		text-align: center;
		background-color:transparent;
	}
	div.calendarDisplay table thead th a{ 
		color: #2D739D;
		font-weight: bold; 
		text-decoration:none;
	}
	
	div.calendarDisplay table thead th.weekday{ 
		font-weight: bold; 
		font-size: 8ptem; 
		color: #2D739D;
		text-align: center;
		background-color: #DFEEF7;
		border: solid #A2D0E2 1px;
	}
  	
	div.calendarDisplay table tbody td{ 
		font-weight: normal; 
		font-size: 8pt;
		
		padding: 6px; 
		color: #0E224B; 
		text-align: right;
		border: solid #A2D0E2 1px;
	}
	
	div.calendarDisplay table tbody td.weekend{ 
		color: #9A2525;
		font-weight: bold;
	}	
	
	div.calendarDisplay table tbody td.today{ 
		color: #9A2525;
		font-weight: bold;
	}
	
	div.calendarDisplay table tbody td.event{
		background-color: #2D739D;
		color: #fff;
	}	
	
	div.calendarDisplay table tbody td.event a{
		color: #fff;
		font-weight: bold; 
		text-decoration:none;
	}
	
	div.calendarDisplay table{
width: 100%;
margin-top: 20px;
		border-collapse: collapse;
		border: solid #A2D0E2 1px;
		padding: 0;
		margin-left:auto;
		margin-right:auto;
		background-color: #fff;
	}