#calender {
	width: 200px;
	font-family: ms sans serif, sans serif;
	font-size: 7pt;
}

#calenderTable {
	border:1px solid #9FB5D5;
	background-color: white;
	display: none;
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0px;
}
#calenderTable TD {
	text-align: center;
	font-size: 7pt;
	width: 19px;
}
#calenderTableHead TR {
	background-color: #477AB1;
}
#calenderTableDays TR {
	background-color: white;
	color:#000000;
}
#selectMonth, #selectYear {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	border-width: 0px;
	border-style: none;
	background-color: #477AB1;
	color:#EDF1F8;
}

#selectMonth option,#selectYear option {
	background-color: #F5F9FC;
	color:#333;
}

#calenderTable A {
	color: #F5F8FC;
	text-decoration: none;
	font-size: 11pt;
	font-family: "courier new";
}
#calenderTable A:hover {
	color: white;
	text-decoration: none;
}
.normalDay {
	border: 1px solid white;
	cursor: pointer;
	background-color: white;
	color: #333333;
}
.hlDay {
	border: 1px solid #CCC;
	background-color: #FFF;
	color: red;
	cursor: pointer;
}
.choosenDay {
	color: #E70;
    background-color: #FFFAF0;
    border:1px solid #730;
	font-weight: bold;
	cursor: pointer;
}
.toDay {
	border:1px solid #9FB5D5;
	background-color: #F9FAFB;
	color: #06c;
	font-weight: bold;
	cursor: pointer;
}