/* Table containing whole calendar - TABLE */
.calOuterTable {
	border: 1px solid black;
	width: 160px;
	background-color: #C2C2CC;
}
/* Month Selector - INPUT */
/* Year Selector - INPUT */
.calCtrl {
font: 12px Tahoma, Verdana, sans-serif;

}
/* Week Day Title - TD */
.calWTitle {
	font: bold 10px Tahoma, Verdana, sans-serif;
	text-align: center;
	color: #004DBB;
	height: 20px;
	width: 20px;
	background-color: #D6DDAC;
}
/* Selected Date - TD */
.calDayCurrent {
	background-color: white;
	width: 20px;
	border: 1px solid black;
}
/* Sat. and Sun. - TD */
.calDayWeekend {
	background: #DFDFE5;
	width: 20px;
}
/* Sat. and Sun. - TD */
.calDayHoliday {
	background: gray;
	width: 20px;
}
/* Not Sat. and Sun. - TD */
.calDayWorking {
	background: #EFF2DC;
	width: 20px;
}
/* Days of current month - A */
.calThisMonth {
	font: 12px Tahoma, Verdana, sans-serif;
	color: #000000;
	text-decoration: none;
}

a.calThisMonth{
	color: #884828;
}
/* Days of other month - A */
.calOtherMonth {
	font: 12px Arial, Helvetica, sans-serif;
	color: #909090;
	text-decoration: none;
}
/* Days not allowed by limits - SPAN */
.calForbDate {
	font: 12px Arial, Helvetica, sans-serif;
	text-decoration: line-through;
}
/* Time navigation table = TABLE */
.calTimetable{
	font-family: Tahoma, Verdana, sans-serif;	
	font-size: 12px;
}
.calDataTitle{
	font-family: Tahoma, Verdana, sans-serif;	
	font-size: 12px;
	color: #FFFFFF;
}

