/* calendar style */
#calendarDiv table, #calendarDiv th, #calendarDiv td, #calendarDiv, #calendarDiv a {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 12px;
font-family: inherit;
vertical-align: baseline;
}

div#calendarDiv {
display: block;
display: none;
position: relative;
/*border: 1px solid #777;*/
}
div#calendarDiv a {
cursor: pointer;
cursor: hand;
color: #000;
}
table#calendar {
background: #ddd;
clear: both;
text-align: center;
font-size: 105%;
}
table#calendar, #linksTable {
width: 180px;
}
table#calendar .calendarHeader {
background: #0761A9 top repeat-x;
border-right: 1px solid #0761A9;
border-left: 1px solid #0761A9;
color: #fff;
}
table#calendar tr.weekDaysTitleRow td {
background: #777;
color: #fff;
border-right: 1px solid #777;
border-left: 1px solid #777;
}
table#calendar tr.weekDaysRow {
background: #ccc;
color: #666;
}
table#calendar td.weekDaysCell {
color: #000;
border: 1px solid #777;
}
table#calendar td.weekDaysCellOver {
background: #fff;
border: 1px solid #777;
}
a#closeCalender {
background: #0761A9;
color: #fff;
position: absolute;
right: 0;
bottom: 100%;
margin-bottom: 0px;
display: block;
padding: 2px;
cursor: pointer;
cursor: hand;
font-size: 60%;
letter-spacing: 1px;
}
a#closeCalender:hover {
background: #ddd;
color: #333;
}
div#calendarDiv table#linksTable td {
background: #0761A9;
}
table#linksTable a {
display: block;
color: #fff;
letter-spacing: 1px;
font-weight: bold;
font-size: 80%;
padding: 2px 5px;
}
table#linksTable a:hover {
background: #ddd;
color: #333;
}
a#prevMonth {
float: left;
}
a#nextMonth {
float: right;
}
td#today {
background: #999;
}
#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*/
}