/* 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> */

.hidden {
	opacity: 0;
	position: absolute;
}
.visible {
	opacity: 1;
}


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

button.calendar {
	background: url(calendar-icon.gif);
	border: 0;
	cursor: pointer;
	float: left;
	height: 20px;
	margin-right: 6px;
	width: 20px;
}
button.calendar:hover,
button.calendar.active {
	background-position: 0 20px;
}

div.calendar {
	height: 171px;
	padding: 0 6px;
	text-align: center;
	width: 147px;
}	
	div.calendar * {
		margin: 0;
		padding: 0;
	}	
	div.calendar div {
		background:url(../../../../images/bg_calendar_header.png) repeat-x;
		cursor: move;
		height: 169px;
		overflow: hidden;
		padding-top: 2px;
		position: relative;
		width: 147px;
		-moz-box-shadow: 0 0 5px #888;
		-webkit-box-shadow: 0 0 5px#888;
		box-shadow: 0 0 5px #888;
	}	
	
	div.calendar caption {
		color: #FFF;
		text-shadow:#600 0px 1px 0px;
		font: normal 12px/16px Arial, Helvetica, sans-serif;
		padding:3px 0;
		text-align: center;
		width: 100%;
	}
	div.calendar caption a {
		cursor: pointer;
		display: block;
		height: 13px;
		overflow: hidden;
		position: absolute;
		text-indent: -100px;
		top: 5px;
		width: 10px;
	}
	div.calendar caption a.prev {
		background: url(../../../../images/calendar_arrow_left.png) no-repeat;
		left: 4px;
	}
	div.calendar caption a.next {
		background: url(../../../../images/calendar_arrow_right.png) no-repeat;
		right: 4px;
	}
	div.calendar caption a:hover {
		
	}
	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 thead tr { border-bottom:1px dotted #D6D6D6 }

	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: #6F7686;
		font: normal 12px Arial, Helvetica, sans-serif;
		height: 21px;
		text-align: center;
		width: 21px;
	}
	div.calendar td {
		color: #EBEBEB;
		font-size: 11px;
	}
	div.calendar td.invalid {
		color: #EBEBEB;
	}
	div.calendar td.valid {
		color: #B7B7B7;
		cursor: pointer;
	}
	div.calendar td.hilite {
		background: url(calendar-hilite.gif);
	}
	div.calendar td.inactive {
		background: url(calendar-td.gif) 0 100%;
		color: #FFF;
	}
	div.calendar td.active,
	div.calendar td.hover {
		background: url(calendar-valid.gif) 0 100%;
		color: #FFF;
		cursor: pointer;
	}