/* 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: 11px;
	font-family: inherit;
	vertical-align: baseline;
	font-family: Verdana, Arial, "Trebuchet MS", Helvetica, Sans-Serif;
}

div#calendarDiv {
	display: block;
	display: none;
	position: absolute;	
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
	padding: 5px 15px 10px 15px;
}
div#calendarDiv a {
	cursor: pointer;
	cursor: hand;		
}
table#calendar {	
	clear: both;
	text-align: center;
	font-size: 105%;
}
table#calendar, #linksTable {
	
	width: 180px;
}
table#calendar .calendarHeader {	
	/*border-bottom: 1px solid #444;*/
	color: #fff;
}
table#calendar tr.weekDaysTitleRow td {	
	color: #fff;
}
table#calendar tr.weekDaysRow {
	
	color: #666;
}
table#calendar td.weekDaysCell {
	color: #000;
	border: 1px solid #fff;
	padding-top: 4px;
	height: 16px;
}
table#calendar td.weekDaysCellOver {	
	border: 0px solid #ccc;
	border-radius: 3px;
	color: #ffffff;
}

table#calendar td.weekDaysCellOver a:hover {	
	border: 0px solid #ccc;
	border-radius: 3px;
	color: #ffffff;
}
a#closeCalender {
	/*
	position: absolute;
	right: 0;
	bottom: 100%;
	margin-bottom: 1px;
	display: block;
	padding: 2px;
	cursor: pointer;
	cursor: hand;
	font-size: 60%;
	letter-spacing: 1px;
	*/
}
a#closeCalender:hover {
	/*background: #eee;*/
	color: #ffffff;
}
div#calendarDiv table#linksTable td {
	/*background: #eee;*/
}
table#linksTable a {
	display: block;
	color: #ccc;
	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: #ccc;
}
#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*/ 
}