  /************/
 /* calendar */
/************/

body {
	cursor: default;
	text-align: center;
}

#calendar {
	font-family: calibri, arial;
	color: black;
	font-size: 12px;
	display: block;
	margin: auto;
	margin-left:35px;
}

#calendar, #calendar div {
	text-align: left;
	width: 164px;
	height: 130px;
}

#calendar div {
	position: absolute;
}

#calendar div.container {
	overflow: hidden !important;
}

#calendar span.indication {
	display: block;
	text-align: center;
}

#calendar table {
	margin-top: 10px;
	text-align: right;
	border-collapse: collapse;
	background-color: white; /* <- fixing ugly text bug in ie7 */
}

#tempLoader {
	margin-left: -999px;
}

/* label & arrows */

#arrowLeft {
	padding: 3px 8px 3px 5px;
	float: left;
	cursor: pointer;
}

#arrowRight {
	padding: 3px 5px 3px 8px;
	float: right;
	cursor: pointer;
}

#label:hover {
}

/* month */

.month th {
	text-align: center;
	font-weight: normal;
	width: 24px;
	padding-bottom: 1px;
	border-bottom: 1px solid #f5f5f5;
}

.month td {
	padding-right: 3px;
	height: 15px;
}

.month td:hover {
	background: url(calendar/day_hover.gif) bottom no-repeat;
	color: #0066cc;
}

.month td.today {
	background: url(calendar/today.gif) bottom no-repeat;
	color: #0066cc;
}
.month td.today:hover {
	background: url(calendar/today_hover.gif) bottom no-repeat;
}

.month td.outsideDay {
	color: #a8a8a8;
}
.month td.outsideDay:hover {
	color: #b1c5fc;
}

/* year & decade */

.year {
	margin-left: 2px;
}

.year td {
	width: 40px;
	height: 35px;
	text-align: center;
}
.year td:hover {
	background: url(calendar/month_hover.gif) center no-repeat;
	color: #0066cc;
}

.year td.selected {
	background: url(calendar/month_selected.gif) center no-repeat;
}
.year td.selected:hover {
	background: url(calendar/month_selected_hover.gif) center no-repeat;
}

.year td.current {
	background: url(calendar/month_current.gif) center no-repeat;
	color: #0066cc;
}
.year td.current:hover {
	background: url(calendar/month_current_hover.gif) center no-repeat;
}

.year td.selectedcurrent {
	background: url(calendar/month_selectedcurrent.gif) center no-repeat;
}
.year td.selectedcurrent:hover {
	background: url(calendar/month_selectedcurrent_hover.gif) center no-repeat;
}

.year td.outsideYear {
	color: #a8a8a8;
}
.year td.outsideYear:hover {
	color: #b1c5fc;
}