/* Table containing whole calendar - TABLE */
.calOuterTable {
	border: 1px solid #666666;
	width: 170px;
	background-color: #FFFFFF;
}
/* Table containing Year and Month selects - TABLE */
.calSelectTable {
	margin: 0px;
	border: 1px solid #CCCCCC;
}
/* Table containing Calendar grid - TABLE */
.calDaysTable {
	margin: 2px;
	border: none;
	width: 160px;
}
/* Month Selector - INPUT */
.calMonCtrl {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 85px;
}
/* Year Selector - INPUT */
.calYearCtrl {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 75px;
}
/* Week Day Title - TD */
.calWTitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background: #808080;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	height: 20px;
	width: 20px;
}
/* Selected Date - TD */
.calDayCurrent {
	background: #f6d7d5;
	border: 1px solid #b56c3c;
}
/* Sat. and Sun. - TD */
.calDayWeekend {
	background: #b4f0e0;
}
/* Not Sat. and Sun. - TD */
.calDayWorking {
	background: #FFFFFF;
}
/* Days of current month - A */
.calThisMonth {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
}
/* Days of other month - A */
.calOtherMonth {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #CCCCCC;
}
/* Days not alloved by limits - SPAN */
.calForbDate {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999999;
	text-decoration: line-through;
}


.calOuterTable a:link {
	color: #000000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #000000;
}
.calOuterTable a:visited {
	color: #000000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #000000;
}
.calOuterTable a:hover {
	color: #000000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #000000;
}
.calOuterTable a:active {
	color: #000000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #000000;
}

