/* Calendar: a Javascript class for Mootools that adds accessible and unobtrusive date pickers to your form elements <http://electricprism.com/aeron/calendar> */
/* Default CSS for Calendar (navigation: 1), Copyright (c) 2007 Aeron Glemann <http://electricprism.com/aeron>, MIT Style License. */

input.calendar,
select.calendar {
	width: 99px;
}

button.calendar {
	background-image: url(images/calendar_btn.gif);
	border: 0;
	cursor: pointer;
	display: inline;
	height: 20px;
	margin-left: 6px;
	margin-bottom: 3px;
	width: 20px;
}
button.calendar:hover,
button.calendar.active {
	background-position: 0 20px;
}

div.calendar {
	height: 195px;
	padding: 0 6px;
	text-align: center;
	width: 147px;
	background-image: url(images/calendar.png);
}	
	div.calendar div {
		background: none !important;
		cursor: move;
		height: 185px;
		overflow: hidden;
		padding-top: 10px;
		position: relative;
		width: 147px;
	}	
	
	div.calendar caption {
	color: #A39788;
	padding-top: 4px;
	text-align: center;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 16px;
	font-weight: bold;
	font-variant: normal;
	}
	div.calendar caption a {
		cursor: pointer;
		display: block;
		height: 12px;
		overflow: hidden;
		position: absolute;
		text-indent: -100px;
		top: 17px;
		width: 11px;
	}
	div.calendar caption a.prev {
	background-image: url(images/calendar-prev.gif);
	left: 0;
	}
	div.calendar caption a.next {
	background-image: url(images/calendar-next.gif);
	right: 0;
	}
	div.calendar caption a:hover {
		background-position: 0 12px;
	}
	div.calendar caption span {
		height: 20px;
		position: relative;
		text-align: center;
	}
	div.calendar caption span.month {
		padding-right: 8px;
	}
	div.calendar caption span.month:after {
		content: ',';
	}

	div.calendar table {
		background: #FFF;
		border: 0;
		border-collapse: collapse;
		border-spacing: 0;
		cursor: default;
		margin: 0 auto;
		overflow: hidden;
		width: 147px;
	}
	div.calendar td,
	div.calendar th {
	border: 0;
	color: #20557D;
	font: normal 11px Arial, Helvetica, sans-serif;
	height: 21px;
	text-align: center;
	width: 21px;
	}
	div.calendar thead th{
		height: 15px;
	}
	div.calendar td {
	color: #FFF;
	font-size: 12px;
	background-image: url(images/calendar-td.gif);
	height: 20px;
	}
	div.calendar td.invalid {
		color: #999;
	}
	div.calendar td.valid {
	background: url(images/calendar-valid.gif);
	color: #113A5A;
	cursor: pointer;
	}
	div.calendar td.hilite {
	background-image: url(images/calendar-hilite.gif);
	}
	div.calendar td.inactive {
		background: url(images/calendar-td.gif) 0 100%;
		color: #FFF;
	}
	div.calendar td.active,
	div.calendar td.hover {
	color: #FFF;
	cursor: pointer;
	background-image: url(images/calendar-valid.gif);
	background-position: 0 100%;
	}
