/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

+                        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.            +

+                                                                      +

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/



	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: 1.2em; 

		color: black; 

		text-align: center;

		background-color: #fb8013;

	}

	

	div#calendar table thead th.weekday{ 

		font-weight: bold; 

		font-size: 1em; 

		color: white; 

		text-align: center;

		background-color: black;

		border: solid black 1px;

	}

  	

	div#calendar table tbody td{ 

		font-weight: normal; 

		font-size: 1em;

		padding-left: 5px; 

		padding-right: 5px; 

		color: #000000; 

		text-align: right;

		border: solid #000000 1px;

	}

	

	div#calendar table tbody td.weekend{ 

		color: orange;

		font-weight: bold;

	}

	

	div#calendar table tbody td.today{

		background-color: gray;

	}

	

	div#calendar table{

		border-collapse: collapse;

		border: solid black 2px;

		padding: 0;

		margin-left:auto;

		margin-right:auto;

		background-color: #F6F6F6;

	}