/* caption determines the style of
   the month/year banner above the calendar. */

caption 
     {
     font-family:arial,helvetica; 
     font-size:11px; 
     color: black;
     font-weight: bold;
     }

/* .calendar determines the overall formatting style of the calendar,  
   acting as the default unless later overruled. */

.calendar 
     {
     font-family:arial,helvetica; 
     font-size:10px; 
     color: white;
	 background-color: #eee;
     }

/*
     background-color: #c0c0c0;
     border-color:#99CCCC;
     border-style: solid;


 .calendarlink determines the formatting of those days linked to
   content. */

.calendarlink 
     {
     color: white;
     }

/* .header determines the formatting of the weekday headers at the top
   of the calendar. */

.header 
     {
     background-color: #000000;
     border-color: #000000;
     border-style: solid;
     border-width: 0px;
	 line-height:15px;
     }

/* .day determines the formatting of each day displayed in the
   calendar. */

.day 
     {
     background-color: #ffffff;
     border-color: #000000;
     border-style: solid;
     border-width: 0px;
     text-align: center;
	 line-height:16px;
	 color:#000000;
     }

/* .linkedday determines the formatting of a date to which content is
   available. */

.linkedday 
     {
     background-color: #8080ff;
     border-color: #000000;
     border-style: solid;
     border-width: 0px;
     text-align: center;
	 line-height:16px;
     }
.today 
     {
     background-color: #ffb500;
     border-color: #000000;
     border-style: solid;
     border-width: 0px;
     text-align: center;
	 color:#000000;
	 line-height:16px;
     }
	 