/*
   This code was adapted from the highly recommended textbook:
	   New Perspectives on JavaScript
	   by Carey and Canovatchel
		published by Thomson
	   ISBN: 0-619-26797-6
      Tutorial 3
      Filename: calendar.css

   This file contains styles applied to the calendar table
*/

#calendar_table    { 
                     background-color:    white; 
                     font-size:           9pt; 
                     font-family:         Arial, Helvetica, sans-serif;
                     border-style:        outset; 
                     border-width:        5px; 
                     margin:              0px 0px 5px 5px;                                }

#calendar_head     { background-color:    #d75500; 
                     color:               ivory; 
                     letter-spacing:      4;                                              }

.calendar_weekdays { width:               30px; 
                     font-size:           10pt; 
                     border-bottom-style: solid;                                          }

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

#calendar_today    { text-align:          center;
                     font-weight:         bold; 
                     color:               #d75500; 
                     background-color:    #ffffdf;
                     border:              1px solid black;                                }