/* 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:11px;  
/*     color: white; */
     background-color: #FFFFFF; 
     border-color: #000000; 
     border-style: solid; 
     border-width: 1px; 
     } 

/* .calendarlink determines the formatting of those days linked to 
   content. */ 

.calendarlink  
     { 
     color: black;
	 text-decoration:none;
     } 

/* .header determines the formatting of the weekday headers at the top 
   of the calendar. */ 

.header  
     { 
     /*background-color: #C8352D;*/
	 background-color: #660099;
	 color:#FFFFFF;
     border-color: #000000; 
     border-style: solid; 
     border-width: 1px; 
     } 

/* .day determines the formatting of each day displayed in the 
   calendar. */ 

.day  
     { 
     background-color:#FFFFFF; 
     border-color: #660099; 
     border-style: solid; 
     border-width: 1px; 
     text-align: center;
	 font-weight:bold;
 	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#660099;
     } 

/* .linkedday determines the formatting of a date to which content is 
   available. */ 

.linkedday  
     { 
     background-color: #660099; 
     border-color: #660099; 
     border-style: solid; 
     border-width: 1px; 
     text-align: center;
	 font-weight:bold;
 	 font-family: Arial, Helvetica, sans-serif;
	 font-size: 12px;
	 color:#660099;
     }

a.linked {
 	 font-family: Arial, Helvetica, sans-serif;
	 font-size: 12px;
	 color: #FFFFFF;
}