/* CSS Document */



/* caption determines the style of

   the month/year banner above the calendar. */



caption 

     {

     font-family:Verdana, Arial, Helvetica, sans-serif; 

     font-size:12px; 

     color: black;

     font-weight: bold;

     }



/* .calendar determines the overall formatting style of the calendar,  

   acting as the default unless later overruled. */



.calendar 

     {

	font-family:Verdana, Arial, Helvetica, sans-serif;

	font-size:12px;

	color: white;

	background-color: #FFFFFF;

	border: 1px solid #666666;

     }



/* .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: #20bdbe;
	font-size: 11px;
	height: 20px;
	width: 20px;
	font-weight: normal;
	color: #FFFFFF;
     }



/* .day determines the formatting of each day displayed in the

   calendar. */



.day 

     {

	background-color: #FFFFFF;

	text-align: center;

	color: #333333;

	height: 20px;

	width: 20px;

     }



/* .linkedday determines the formatting of a date to which content is

   available. */



.linkedday 

     {
	text-align: center;
	height: 20px;
	width: 20px;
	color: #FFFFFF;
	background-color: #20bdbe;
     } 

