/*
   New Perspectives on JavaScript, 2nd Edition
   Tutorial 3
   Tutorial Case
   Filename: calendar.css

   This file contains styles applied to the calendar table
*/

#calendar_table    {
    float: right; 
    /*background-color: white;*/
    font-size: 9pt; 
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px 0px 5px 5px;
    
    border-collapse: collapse;
    
    -moz-border-radius:  0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

#calendar_head     {
    letter-spacing: 2px;
}

.calendar_weekdays {
    color: yellow;
    
    width: 30px; 
    font-size: 10pt; 
    border-collapse: collapse;
}

.calendar_dates    {
    /*color: red;*/
    text-align: center; 
   /* background-color: white;*/
}

#calendar_today    {
    font-weight: bold; 
    color: rgb(223,29,29);
   /* background-color: ivory;*/
    border: 0px solid white;
}