/* this is the container for the entire calendar,
 * it will change the top text.
 */
.CalendarContainer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: ##9E7119;;

}

.CalendarContainer th {
	margin-left:0px;
	margin-right:0px;
	padding: 0;
}
/* class for all the individual items below the month/year, includes days */
.CalendarItems {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: bolder;
	color: #000000;
}
.CalendarContainer td {
	padding-bottom:2px;
	padding-top:2px;
	text-align:center;
}

/* blankItem pertains to the beginning and ending table cells that are blank */
.blankItem {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 13px;
}

/* eventItem is applied only to days with one or more events */
.eventItem {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	background-image: url(../images/cal_navy_bg.gif);
	background-repeat: no-repeat;
	background-position: center;
	border-bottom; 1px solid black;
}

.eventItemToday {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	background-image: url(../images/cal_today_bg.gif);
	background-position: center;
	background-repeat: no-repeat;
	border-bottom; 1px solid black;
}

/* applied to days that don't have events */
.noEventItem {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 10px;
	color: #000000;
	text-align: left;
	border-bottom; 1px solid black;
}

/* weekday headers */
.weekdays {
	border-bottom: 1px solid #9E7119;;
	border-top: 1px solid #9E7119;;
}