/**********************************************************************
*          Calendar JavaScript [DOM] v3.04 by Michael Loesler          *
************************************************************************
* Copyright (C) 2005-08 by Michael Loesler, http//derletztekick.com    *
*                                                                      *
*                                                                      *
* 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 3 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, see <http://www.gnu.org/licenses/>  *
* or write to the                                                      *
* Free Software Foundation, Inc.,                                      *
* 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.            *
*                                                                      *
 **********************************************************************/

	html, body { 
		
		font-family: verdana, arial, sans-serif; 
	}
	
	/* Fuer IE <= 6 */
	div#calendar {
		text-align: left;
	}

	div#calendar table thead th{ 
		font-weight: bold; 
		font-size: 0.9em; 
		color: #fff; 
		text-align: center;
		background-color: #6e6e66;
	}
	
	div#calendar table thead th.weekday{ 
		font-weight: bold; 
		font-size: 0.8em; 
		color: #000000; 
		text-align: center;
		background-color: #dcdcdc;
		border: solid #fff 1px;
	}
  	
	div#calendar table tbody td{ 
		font-weight: normal; 
		font-size: 0.8em;
		padding-left: 5px; 
		padding-right: 5px; 
		color: #000000; 
		text-align: right;
		border: solid #d0d0d0 0px;
	}
	
	div#calendar table tbody td.saturday{ 
		color: #d0d0d0;
		font-weight: normal;
	}
	
	div#calendar table tbody td.sunday{ 
		color: #d0d0d0;
		font-weight: bold;
	}
	
	div#calendar table tbody td.weekend{ 
		color: #6e6e66;
		
	}
	
	div#calendar table tbody td.today{
		background-color: #86B918;
		color: #fff;
		
	}
	
	div#calendar table tbody td.last_month, div#calendar table tbody td.next_month {
		color: 	#9e9e99;
	}
	
	div#calendar table{
		border-collapse: collapse;
		border: solid #d0d0d0 0px;
		padding: 0;
		background-color: #fff;
	}
