/* Table containing whole calendar - TABLE */
.calOuterTable {
	border: 1px solid #9dadc6;
	width: 170px;
	background:white;

}
/* Month Selector - INPUT */
/* Year Selector - INPUT */
.calCtrl
{
	font-size : 0.7em;
	font-family: tahoma, verdana, arial;
	text-decoration: none; 

}
/* Week Day Title - TD */
.calWTitle {
	font-size : 0.7em;
	color: #ffffff; 
	font-family: tahoma, verdana, arial;
	background: gray;
	text-align: center;
	height: 20px;
	width: 20px;
	font-weight: bold;
}
/* Selected Date - TD */
.calDayCurrent {
	background: #FFB3BE;
	width: 20px;
	border: solid 1px red;

}
/* Sat. and Sun. - TD */
.calDayWeekend {
	background: #ACD6F5;
	width: 20px;
}
/* Sat. and Sun. - TD */
.calDayHoliday {
	background: gray;
	width: 20px;
}
/* Not Sat. and Sun. - TD */
.calDayWorking {
	background: #FFFFFF;
	width: 20px;
}
/* Days of current month - A */
.calThisMonth {
	font: 10px tahoma, verdana, arial;
	color: #000000;
	text-decoration: none;
}
/* Days of other month - A */
.calOtherMonth {
	font: 10px tahoma, verdana, arial;
	color: gray;
	text-decoration: none;
	
}
/* Days not allowed by limits - SPAN */
.calForbDate {
	font: 10px tahoma, verdana, arial;
	color: #9dadc6;
	text-decoration: line-through;
	font-style: italic; 
}
/* Time navigation table = TABLE */
.calTimetable{
	font-family: Tahoma, Verdana, sans-serif;	
	font-size: 10px;
	
}
.calDataTitle{
	font-family: Tahoma, Verdana, sans-serif;	
	font-size: 10px;
	color: gray;
	font-weight:bold;


}

