/**********************************************************************
*          Calendar JavaScript [DOM] v3.1 by Michael Loesler           *
************************************************************************
* Copyright (C) 2005-10 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: arial,helvetica,verdana,sans-serif; 
			}
				
			#calendar { /* Fuer IE <= 6 */
				background-color: #606060;
                box-shadow: 0 0 20px #000000;
			}
            
			/*** Kopf Monat 2013 ***/
			#calendar table thead th{ 
				font-weight: bold; 
				font-size: 0.7em;
				line-height: 1.5em;				
				color: #ffffff; 
				text-align: center;
				background-color: #202020;
                padding:0 3px 0 3px;
			}
			
			/*** Kopf Tage Mo Di ... ***/
			#calendar table thead th.weekday{ 
				font-weight: normal; 
				font-size: 0.7em;
				line-height: 1.5em;
				color: #e8ebee; 
				text-align: center;
				background-color: #606060;
				border: solid #606060 1px;
			}

			/*** Tabelle Monatstage 1,2,3 bis 31 ***/
			#calendar table tbody td, #calendar table tfoot td{ 
				font-weight: normal; 
				font-size: 0.7em;
				line-height: 1.3em;
				width: 1.2em;
				padding: 0em 0.4em 0em 0.3em; 
				color: #e8ebee; 
				background-color: #606060;
				text-align: right;
				border: 1px solid #606060;
			}
			
			/*** Uhr unten rechts ***/
			#calendar table tfoot td {
				font-weight: normal; 
				font-size: 0.7em;
				color: #ffffff; 
				background-color: #202020;
				border: none;
				line-height: 1.8em;
				text-align: right;
                padding-right:6px;
			}
            
			/*** KW unten links ***/
			#calendar table tfoot td.calendar_week {
				font-weight: normal; 
				font-size: 0.7em;
				color: #ffffff;
				background-color: #202020;
				line-height: 1.8em;
				text-align: left;
                padding-left:6px;
			}
			
			#calendar table tbody td.saturday{ 
				color: #FF4242;
				font-weight: bold;
			}
			
			#calendar table tbody td.sunday{ 
				color: #FF4242;
				font-weight: bold;
			}
            
			/*** Wochenende Samstag Sontag ***/
			#calendar table tbody td.weekend{ 
				color: #FF4242;
			}
            
			/*** heutiger Tag ***/
			#calendar table tbody td.today{
				background-color: #ffffff;
                color: #000000;
				font-weight: bold;
			}
			
            /*** Pfeile fuers Jahr ***/
			#calendar table thead th.prev_year, #calendar table thead th.next_year {
				margin: 0.1em;
				padding: 0.1em;
				line-height: 0.75em;
				font-size: 0.65em;
			}
			
            /*** Tage nicht aktueller Monat ***/
			#calendar table tbody td.last_month, #calendar table tbody td.next_month {
				color: 	#868686;
			}
			
            /*** Kalender Komplett ***/
			#calendar table{
				border-collapse: collapse;
				border: solid #202020 1px;
				margin-left:auto;
				margin-right:auto;
				background-color: #202020;
			}