/* calendar style */

#calendarDiv {
	display: block;
	display: none;
	position: relative;
	border: 1px solid #03224c;
}
#calendarDiv a {
	cursor: pointer;
}
#calendar {
	background-color: #56739a;
	clear: both;
	text-align: center;
	font-size: 105%;
}
#calendar, #linksTable {
	width: 180px;
}
#calendar .calendarHeader {
	background-color: #003366;
	border-bottom: 1px solid #03224c;
	color: #fff;
}
#calendar .weekDaysTitleRow {
	background-color: #22427c;
	color: #fff;
}
#calendar .weekDaysRow {
	background: #DFF2FF;
	color: #03224c;
}
#calendar .weekDaysCell {
	border: 1px solid #03224c;
}
#calendar .weekDaysCellOver {
	background-color: #03224c;
	border: 1px solid #FFF;
	color: #FFF;
}
#closeCalender {
	position: absolute;
	right: 0;
	bottom: 100%;
	margin-bottom: 1px;
	display: block;
	padding: 2px;
	cursor: pointer;
	font-size: 60%;
	background: #03224c;
	color: #fff;
}
#closeCalender:hover {
	background: #DDD;
	color: #000;
}
#linksTable {
	background: #03224c;
}
#linksTable a {
	display: block;
	color: #fff;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 80%;
	padding: 2px 5px;
}
#linksTable a:hover {
	background: #DDD;
	color: #333;
}
#prevMonth {
	float: left;
}
#nextMonth {
	float: right;
}
#today {
	background: #24445e;
	color: #FFF;
}
#calendar td#today.weekDaysCell {
	background-color: #80d0d0;
	color: #03224c;
}


