/* Calendar: a Javascript class for Mootools that adds accessible and unobtrusive date pickers to your form elements <http://electricprism.com/aeron/calendar> */
/* dates CSS for Calendar (navigation: 1), Copyright (c) 2007 Aeron Glemann <http://electricprism.com/aeron> */

input.dates,
select.dates {
	width: 85px;
}

button.dates {
	background: url(../images/calicon-trans.png);
	_background: url(../images/calicon.gif);
	background-repeat:no-repeat;
	border: 0;
	cursor: pointer;
	height: 26px;
	margin-right: 10px;
	width: 20px;
}
button.dates:hover,
button.dates.active {
	background-position: 0 -27px;
}

div.dates {
	background: url(../images/calback-trans.png);
	_background: url(../images/calback.gif);
	height: 187px;
	padding: 0 12px;
	text-align: center;
	width: 147px;
}	
	div.dates * {
		margin: 0;
		padding: 0;
	}	
	div.dates div {
		background: none !important;
		cursor: move;
		height: 184px;
		overflow: hidden;
		padding-top: 6px;
		position: relative;
		width: 147px;
	}	
	
	div.dates caption {
		color: #095AA5;
		font: bold 12px/17px Arial, Helvetica, sans-serif;
		padding-top: 4px;
		text-align: center;
		
		width: 100%;
	}
	div.dates caption a {
		cursor: pointer;
		display: block;
		height: 11px;
		overflow: hidden;
		position: absolute;
		text-indent: -100px;
		top: 16px;
		width: 11px;
	}
	div.dates caption a.prev {
		background-image: url(../images/calprev.gif);
		background-repeat:no-repeat;
		left: 1px;
	}
	div.dates caption a.next {
		background-image: url(../images/calnext.gif);
		background-repeat:no-repeat;
		right: 1px;
	}
	div.dates caption a:hover {
		background-position: 0 -11px;
	}
	div.dates caption span {
		height: 25px;
		position: relative;
		text-align: center;
	}
	div.dates caption span.month {
		padding-right: 8px;
	}
	div.dates caption span.month:after {
		content: ',';
	}

 div.dates caption span {
 padding-top: 5px;
 position: relative;
 text-align: center;
 }
 div.dates caption span.month {
 float: left;
 width: 75px;
 }
 div.dates caption span.month:after {
 content: '';
 }
 div.dates caption span a {
 top: 8px;
 }
 div.dates caption span.year {
 float: right;
 width: 63px;
 }



	div.dates table {
		border: 0;
		border-collapse: collapse;
		border-spacing: 0;
		cursor: default;
		margin: 0 auto;
		overflow: hidden;
		width: 147px;
	}
	div.dates td,
	div.dates th {
		border: 0;
		color: #9ABCDA;
		font: normal 12px Arial, Helvetica, sans-serif;
		height: 19px;
		text-align: center;
		width: 21px;
	}
	div.dates td {
		color: #9BA7B3;
		font-size: 11px;
		padding-right: 5px;
		text-align: right;
		width: 16px;
	}
	div.dates td.invalid {
		color: #666;
	}
	div.dates td.valid {
		color: #FFF;
		cursor: pointer;
	}
	div.dates td.active,
	div.dates td.hover {
		background-color: #9ABCDA;
		color: #FFDF90;
		cursor: pointer;
	}