/**********************************************************************
*          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 { 
        /*background-color: #D6CB99;*/
        font-family: verdana, arial, sans-serif; 
    }
    
    /* Fuer IE <= 6 */
    div#calendar {
        text-align: center;
    }

    div#calendar table thead th{ 
        font-weight: normal; 
        font-size: 8.5pt; 
        color: #000; 
        text-align: center;
        background-color: #E8E1BA;
        border-bottom: 1px solid #fff;
        padding-bottom: 3pt;
    }
    
    div#calendar table thead th.weekday{ 
        font-weight: bold; 
        font-size: 8.5pt; 
        color: #000; 
        text-align: center;
        background-color: #E8E1BA;
        border-bottom: none;
        padding-top: 3pt;
    }
    
    div#calendar table tbody td{ 
        font-weight: normal; 
        font-size: 8.5pt;
        padding-left: 7pt; 
        padding-right: 7pt; 
        color: #000; 
        text-align: right;
        /*border: solid #CCD2D8 1px;*/
    }
    
    div#calendar table tbody td.saturday{ 
        color: #000;
        font-weight: normal;
    }
    
    div#calendar table tbody td.sunday{ 
        color: #000;
        font-weight: bold;
    }
    
    div#calendar table tbody td.weekend{ 
        color: #000;
    }
    
    div#calendar table tbody td.today{
        border: 1px solid #D1212B;
    }
    
    div#calendar table tbody td.last_month, div#calendar table tbody td.next_month {
        color:  #b5a570;
    }
    
    div#calendar table{
        border-collapse: collapse;
        /*border: solid #112A5D 2px;*/
        padding: 0;
        margin-left:auto;
        margin-right:auto;
        background-color: #E8E1BA;
    }
    
    div#calendar table thead th.last_month, div#calendar table thead th.next_month {
       color: #D1212B;
    }
