/* calendar style */
#calendarDiv
{
	margin: 0;
	padding: 8;
	border: 0;
	outline: 0;
	font-weight: normal;
	font-size: 12px;
	
	vertical-align: baseline;
	display: block;
	display: none;
	position: relative;
	border: 2px solid #777;
	z-index:1000;
}

#calendarDiv a {
	cursor: pointer;
	cursor: hand;
	color: #fff;
}
.calendartitle
{
	background: #0965A9;
	text-align: center;
	width:100%;
	color:#fff;
	border-collapse:collapse;
}
.calendartitle td{ text-align:center; padding:4px;}

#prevYear{display:block;}
#nextYear{display:block;}

table#calendarbody {
	background: #5092C3;
	text-align: center;
	border-collapse:collapse;
	font-size:12px;
	width:100%;
	border-color:#7FAACA;
}
 
table#calendarbody tr.weekDaysTitleRow td {
	color: #fff;
	background-color:#437EA9;
	height:23px;
	width:23px;
	border:solid 1px #7FAACA;
}
table#calendarbody tr.weekDaysRow {
	background: #5092C3;
	color: #666;
}
table#calendarbody td.weekDaysCell {
	color: #000;
	height:23px;
	width:23px;
	padding:2px;
	border:solid 1px #7FAACA;
	font-weight:bold;
}
table#calendarbody td.weekDaysCellOver {
	background: #3BB6F2;
	font-weight:bold;
}
a#closeCalendar {
	position: absolute;
	right: -2px;
	bottom: 100%;
	margin-bottom: 1px;
	display: block;
	padding: 4px;
	cursor: pointer;
	cursor: hand;
	font-size: 80%;
	letter-spacing: 1px;
	background: #777777;
}
a#closeCalendar:hover {
	background: #000;
	color: #fff;
}

td#today {
	background: #94863B;
}
#calendar_cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 193px; /*must have to match width and borders*/
    height: 200px; /*must have to match maximum height*/ 
}