/* 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: 85px;
	float: left;
}

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

div.calendar {
	height: 170px;
	padding: 0;
	text-align: center;
	width: 150px;
	background-color: #aea7a2;
}
	div.calendar * {
		margin: 0;
		padding: 0;
	}
	div.calendar div {
		background: none !important;
		cursor: move;
		overflow: hidden;
		position: relative;
		width: 148px;
		border: 1px solid #aea7a2;
	}

	div.calendar caption {
		height: 20px;
		color: #333;
		font: normal 12px/16px Arial, Helvetica, sans-serif;
		text-align: center;
	}
	div.calendar caption a {
		position: absolute;
		display: block;
		height: 11px;
		line-height: 11px;
		overflow: hidden;
		cursor: pointer;
		text-indent: -100px;
		width: 11px;
	}
	div.calendar caption a.prev {
	  top: 5px;
	  left: 5px;
		background: #aea7a2 url(../img/calendar-prev.gif) no-repeat 0 0;
	}
	div.calendar caption a.next {
	  top: 5px;
	  right: 5px;
		background: #aea7a2 url(../img/calendar-next.gif) no-repeat 0 0;
	}
	div.calendar caption span {
		position: relative;
		text-align: center;
		line-height: 20px;
		color: #fff;
	}
	div.calendar caption span.month {
		padding-right: 8px;
	}
	div.calendar caption span.month:after {
		content: ',';
	}

	div.calendar table {
		background: #FFF;
		border-collapse: collapse;
		border-spacing: 0;
		cursor: default;
		margin: 0 auto;
		overflow: hidden;
		width: 148px;
		height: 148px;
	}
	div.calendar td,
	div.calendar th {
		color: #f86d44;
		border: 1px solid #dedad7;
		font: normal 12px Arial, Helvetica, sans-serif;
		height: 20px;
		line-height: 20px;
		text-align: center;
		width: 20px;
	}
	div.calendar td {
		color: #FFF;
		font-size: 11px;
	}
	div.calendar td.invalid {
		color: #D0CECC;
		text-decoration: line-through;
	}
	div.calendar td.valid {
		background-color: #fff;
		color: #999;
		cursor: pointer;
	}
	div.calendar td.hilite {
	  color: #ee6951;
		background-color: #f4e2df;
	}
	div.calendar td.inactive {
		background-color: #ee6951;
		color: #fff;
	}
	div.calendar td.active,
	div.calendar td.hover {
		background-color: #ee6951;
		color: #fff;
		cursor: pointer;
	}