/* calendar style */

#calendarDiv {
	display: block;
	display: none;
	position: relative;
	border: 1px solid #999999;
	margin-top:5px;
}
#calendarDiv a {
	cursor: pointer;
	color:#FFFFFF;

}
#calendar {
	background: #8c99b2;
	clear: both;
	text-align: center;
	font-size: 12px;
}
#calendar, #linksTable {
	width: 160px;
}
#calendar .calendarHeader {
	background: #8c99b2;
	border-bottom: 1px solid #768196;
	color: #ffffff;
}
#calendar .weekDaysTitleRow {
	background: #8c99b2;
	color: #ffffff;
	font-weight:bold;
}
#calendar .weekDaysRow {
	background: #8c99b2;
	color: #666666;
}
#calendar .weekDaysCell {
	color: #000000;
	border: 1px solid #768196;
}
#calendar .weekDaysCellOver {
	background:#333333;
	border: 1px solid #CC6600;
	color:#000000;
}
#closeCalender {
	position: absolute;
	right: 0;
	bottom: 100%;
	display: block;
	padding: 2px;
	cursor: pointer;
	font-size: 90%;
	background: #000000;
	width:20px;
	text-align:center;
	font-weight:bold;
}
#closeCalender:hover {
	background:#FF9933;
	color: #000000;
	font-weight:bold;
}
#linksTable {
	background: #333333;
}
#linksTable a {
	display: block;
	color: #ffffff;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 12px;
	padding: 2px 5px;
}
#linksTable a:hover {
	background: #FF9933;
	color: #333333;
}
#prevMonth {
	float: left;
}
#nextMonth {
	float: right;
}
#today {
	background: #FF9933;
	font-weight:bold;
	color:#000000;
}



