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

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

button.calendar {
	background:transparent url(/images/calendar/calendar-icon.gif) repeat scroll 0 0;
	border:0 none;
	cursor:pointer;
	float:right;
	height:20px;
	margin:-19px 5px;
	width:20px;
}
button.calendar:hover,
button.calendar.active {
	background-position: 0 20px;
}

div.calendar {
	background: url(/images/calendar/calendar.png);
	height: 175px;
	padding: 0 12px;
	text-align: center;
	width: 147px;
}	
	div.calendar * {
		margin: 0;
		padding: 0;
	}	
	div.calendar div {
		background: none !important;
		cursor: move;
		height: 165px;
		overflow: hidden;
		padding-top: 10px;
		position: relative;
		width: 147px;
	}	
	
	div.calendar caption {
		color: #FFF;
		font: bold 11px/17px Tahoma;
		padding-top: 3px;
		text-align: center;
		width: 100%;
	}
	div.calendar caption a {
		cursor: pointer;
		display: block;
		height: 11px;
		overflow: hidden;
		position: absolute;
		text-indent: -100px;
		top: 16px;
		width: 11px;
		border:none;
	}
	div.calendar caption a.prev {
		background-image: url(/images/calendar/calendar-prev.gif);
		left: 1px;
	}
	div.calendar caption a.next {
		background-image: url(/images/calendar/calendar-next.gif);
		right: 1px;
	}
	div.calendar caption a:hover {
		background-position: 0 11px;
	}
	div.calendar caption span {
		height: 25px;
		position: relative;
		text-align: center;
	}
	div.calendar caption span.month {
		padding-right: 8px;
	}
	div.calendar caption span.month:after {
		content: ',';
	}

	div.calendar table {
		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: #000;
		font: normal 12px Arial, Helvetica, sans-serif;
		height: 19px;
		text-align: center;
		width: 21px;
	}
	div.calendar td {
		color: #700000;
		font-size: 11px;
		padding-right: 5px;
		text-align: right;
		width: 16px;
	}
	div.calendar td.invalid {
		color: #FFAC7F;
	}
	div.calendar td.valid {
		color: #FFF;
		cursor: pointer;
	}
	div.calendar td.active,
	div.calendar td.hover {
		color: #7B9A12;
		cursor: pointer;
	}