/**********************************************************************
*          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.            *
*                                                                      *
 **********************************************************************/

			#calendar { /* Fuer IE <= 6 */
				text-align: center;
			}
    
			#calendar table thead th{ 
				font-weight: normal; 
				font-size: 0.85em;
				line-height: 1.5em;				
				text-align: center;
				background-color: #e8e4e4;
			}
			
			#calendar table thead th:hover{ 
				color: #c00000;
			}

			#calendar table thead th.weekday{ 
				font-weight: normal; 
				font-size: 0.85em;
				line-height: 1.3em;
				color: #404040; 
				text-align: center;
				background-color: #e8e4e4;
				border: solid #a0a0a0 1px;
			}

			#calendar table tbody td, #calendar table tfoot td{ 
				font-weight: normal; 
				font-size: 0.85em;
				line-height: 1.4em;
				padding-left: 0.55em; 
				padding-right: 0.55em; 
				text-align: right;
				border: 0;
			}
			
			#calendar table tfoot td {
				font-size: 0.8em;
				border-top: 1px solid #a0a0a0;
				background-color:#e8e4e4;
			}
			
			#calendar table tfoot td.calendar_week {
				text-align: left;
			}


			#calendar table tbody td.sunday{ 
				color: #f00000;
				font-weight: normal;
			}			
			
			#calendar table tbody td.today{
				outline:1px solid red;
			}
			
			#calendar table thead th.prev_year, #calendar table thead th.next_year {
				margin: 0.1em;
				padding: 0.1em;
				line-height: 0.6em;
				font-size: 0.95em;
			}
			
			#calendar table tbody td.last_month, #calendar table tbody td.next_month {
				font-size: 0.85em;
				line-height: 1.5em;
				padding-left: 0.55em; 
				padding-right: 0.55em; 
				color: #b0b0b0;
				background-color: #f8f4f4;
			}
			
			#calendar table{
				font-family: verdana, arial, sans-serif; 
				border-collapse: collapse;
				border: solid #a0a0a0 1px;
				padding: 0;
				background-color: white;
			}