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

div.calendar {
	background: url(./img/calendar.png);
	height: 195px;
	padding: 0 6px;
	text-align: center;
	width: 147px;
}
	div.calendar * {
		margin: 0;
		padding: 0;
	}
	div.calendar div {
		background: none !important;
		cursor: move;
		height: 185px;
		overflow: hidden;
		padding-top: 10px;
		position: relative;
		width: 147px;
	}

	div.calendar caption {
		color: #ff6600;
		font: bold 11px/15px Arial, Helvetica, sans-serif;
		overflow: hidden;
		text-align: center;
		width: 100%;
	}
	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(./img/calendar_prev.gif);
		background-repeat: no-repeat;
		/*width: 11px;
		height: 12px;*/
		left: 0;
	}
	div.calendar caption a.next {
		background-image: url(./img/calendar_next.gif);
		background-repeat: no-repeat;
		right: 0;
	}
	div.calendar caption a:hover {
		background-position: 0 -12px;
	}
	div.calendar caption span {
		padding-top: 6px;
		position: relative;
		text-align: center;
	}
	div.calendar caption span.month {
		float: left;
		width: 84px;
	}
	div.calendar caption span.month:after {
		content: '';
	}
	div.calendar caption span a {
		top: 8px;
	}
	div.calendar caption span.year {
		float: right;
		width: 63px;
	}

	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: #777777;
		font: normal 12px Arial, Helvetica, sans-serif;
		height: 21px;
		text-align: center;
		width: 21px;
	}
	div.calendar td {
		color: #9cb9cf;
		font-size: 11px;
	}
	div.calendar td.invalid {
		color: #999;
	}
	div.calendar td.valid {
		color: #516574;
		font-weight: bold;
		cursor: pointer;
	}
	div.calendar td.inactive {
		color: #FFF;
	}
	div.calendar td.active,
	div.calendar td.hover {
		color: #ff6600;
		font-weight: bold;
		cursor: pointer;
	}