/* 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>, MIT Style License. */

input.calendar,
select.calendar {
	width: 10em;
}

img.calendar {
	border: 0;
	cursor: pointer;
	height: 1.25em;
	margin-right: 0.5em;
	width: 1.25em;
}
img.calendar.active {
}

div.calendar {
	/*	background: url(/static/image/layout/Calendar.png);
*/	height: 10em;
	text-align: center;
	width: 10em;
}	
	div.calendar img {
		position: relative;
		z-index: -1;
		width: 10em;
		height: 10em;
	}
	div.calendar div {
	background: none !important;
	cursor: move;
	height: 10em;
	overflow: hidden;
	position: relative;
	top: -10em;
	width: 10em;
	padding-top: 0.25em;
	}	
	
	div.calendar caption {
		color: #CF0;
		padding-top: 0.25em;
		text-align: center;
		width: 100%;
	}

	div.calendar caption img.prev,
	div.calendar caption img.next {
	cursor: pointer;
	height: 0.75em;
	overflow: hidden;
	position: absolute;
	top: 0.75em;
	width: 1em;
	z-index: 50;
	}

	div.calendar caption img.arrow {
		cursor: pointer;
		height: 0.75em;
		width: 1em;
		z-index: 50;
	}

	div.calendar caption img.prev {
	left: 0.5em;
	}
	div.calendar caption img.next {
	right: 0.5em;
	}
	div.calendar caption span {
		height: 1.5em;
		position: relative;
		text-align: center;
	}
	div.calendar caption span.month {
		font-size: 0.75em;
		padding-right: 0.5em;
	}
	div.calendar caption span.year {
		font-size: 0.75em;
	}
	div.calendar caption span.month:after {
		content: ',';
	}

	div.calendar table {
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
	cursor: default;
	overflow: hidden;
	width: 8.6em;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	}
	div.calendar td,
	div.calendar th {
		border: 0;
		color: #999;
		font-size: 0.75em;
		height: 1.5em;
		text-align: center;
		margin: 0;
		padding: 0;
		padding-left: 0.25em;
		width: 1em;
	}
	div.calendar td {
	color: #333;
	font-size: 0.75em;
	padding-right: 0.1em;
	text-align: right;
	width: 1em;
	}
	div.calendar td.invalid {
		color: #666;
	}
	div.calendar td.valid {
		color: #FFF;
		cursor: pointer;
	}
	div.calendar td.active,
	div.calendar td.hover {
		color: #CF0;
		cursor: pointer;
	}
