/* calendar style */

#calendarDiv {
	display: block;
	display: none;
	position: relative;
	border: 1px solid #ccc;
	font-family:arial;
	font-size:10px;
	z-index:9999;
}
#calendarDiv a {
	cursor: pointer;
}
#calendar {
	background-color: #F4F4F4;
	clear: both;
	text-align: center;
}
#calendar, #linksTable {
	width: 180px;
}
#calendar .calendarHeader {
	background-color: #CCCCCC;
	border-bottom: 1px solid #ccc;
	color: #fff;
}
#calendar .weekDaysTitleRow {
	background: #777;
	color: #fff;
}
#calendar .weekDaysRow {
	background: #eee;
	color: #666;
}
#calendar .weekDaysCell {
	color: #000;
	border: 1px solid #ddd;
}
#calendar .weekDaysCellOver {
	background: #fff;
	border: 1px solid #777;
}
#closeCalender {
	position: absolute;
	right: 0;
	bottom: 100%;
	margin-bottom: 1px;
	display: block;
	padding: 2px;
	cursor: pointer;
	font-family:arial;
	font-size:10px;
	background-color: #ffffff;
	color:#FFFFFF;
}
#linksTable {
	background: #000;
}
#linksTable a {
	display: block;
	color: #fff;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 10px;
	padding: 2px 5px;
}
#linksTable a:hover {
	background: #ddd;
	color: #333;
}
#prevMonth {
	float: left;
	width:20px;
	text-align:center;
}
#nextMonth {
	float: right;
	width:20px;
	text-align:center;	
}
#today {
	background-color: #D5C1BF ;
}