/* CSS Document */

.event { /* Text format of events */
	text-decoration: underline;
	font-size: 12px; /* This may be overriden by hard-coded option */
	color: #1C31AA;
}

.event a { 
	color:#1C31AA;
}

.event a:link { 
	color:#1C31AA;
}

.event a:visited { 
	color:#1C31AA;
}

.event a:hover {
   color:#000000;
 }

.month_header { /* top of calendar, month name display */
	font-weight: bold;
	color: #FFFFFF;
	background-color: #CC0000;
	text-decoration: none;
}

.month_header a{
	color: #FFFFFF;
	}
	
.month_header a:visited {
	color: #FFFFFF;
	}
.days_header { /* days of the week header */
	color: #000000;
	background-color: #D2A45B;
}
.current_day { /* background of current day (with or without events */
	background-color: #FFE150;
	color: #00FFFF;
}
.empty_day { /* format of empty calendar spaces (Spacer boxes) */
	background-color: #FFFFFF;
}

.calendar td {
	color: #99290b;
	font-size:12px
	
}

.calendar a {
	color: #00F;
	text-decoration:none;
}

.event_day { /* Format of background for days that have events */
	background-color: #FFF0A1;
}

.event_day a { 
	color:#1C31AA;
	text-decoration:none;
}

.event_day a:link { 
	color:#1C31AA;
	text-decoration:none;
}

.event_day a:visited { 
	color:#1C31AA;
	text-decoration:none;
}

.event_day a:hover {
   color:#000000;
	text-decoration:none;
 }





.noevent_day { /* Format of background for days that have no events, typically same as empty_day */
	background-color: #FFFFFF;
	color: #2C6ACA;
}
.table_background { /* Background of Calendar Table */
	background-color: #CC0000;
}
.day_number { /* Format of the day (Number only) of all days except current_day */
	color: #000000;
	margin: 0px;
	padding: 0px;
}
.current_day_number { /* format of the current day number */
	color: #CC0000;
	margin: 0px;
	padding: 0px;
	text-decoration: blink; /* Blink only works with 1/2 of the browsers (Firefox and opera? Maybe safari) */
}


/* The following are not used with the popup*/
.samplebox {
padding: 5px;

border: 5px solid #99CCFF;
background-color: #FFFFCC;
width: 300px;
display: none;
}
.sb_event_title {
	color: #3300FF;
}
.sb_event_text {
	color: #000000;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	line-height: 17px;
	color: #000000;
}

