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

input.dateSelect,
select.dateSelect {
	width: 149px;
}

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

div.dateSelect {
	background: #095994;
	height: 195px;
	padding: 0 12px;
	text-align: center;
	width: 160px;
	border-right: 3px solid #cccccc;
	border-bottom: 3px solid #cccccc;
}	
	div.dateSelect * {
		margin: 0;
		padding: 0;
	}	
	div.dateSelect div {
		background: none !important;
		cursor: move;
		height: 175px;
		overflow: hidden;
		padding-top: 10px;
		position: relative;
		width: 160px;
	}	
	
	div.dateSelect caption {
		color: #ffffff;
		font: bold 1em Arial, Helvetica, sans-serif;
		padding: 4px;
		text-align: center;
		width: 100%;
	}
	div.dateSelect caption a {
		cursor: pointer;
		display: block;
		height: 20px;
		overflow: hidden;
		position: absolute;
		top: 16px;
		width: 20px;
		color: #5196dc;
	}
	div.dateSelect caption a.prev {
		left: 1px;
	}
	div.dateSelect caption a.next {
		right: 1px;
		text-align: right;
	}
	div.dateSelect caption a:hover {
		background-position: 0 11px;
	}
	div.dateSelect caption span {
		height: 25px;
		position: relative;
		text-align: center;
	}
	div.dateSelect caption span.month {
		padding-right: 5px;
	}

	div.dateSelect table {
		border: 0;
		border-collapse: collapse;
		border-spacing: 0;
		cursor: default;
		margin: 0 auto;
		overflow: hidden;
		width: 160px;
	}
	div.dateSelect td,
	div.dateSelect th {
		border: 0;
		color: #ffffff;
		font: normal 1em Arial, Helvetica, sans-serif;
		height: 19px;
		text-align: center;
		width: 21px;
	}
	div.dateSelect th {
		border-top: 1px solid #2A70A4;
		border-bottom: 1px solid #2A70A4;
		padding: 4px 0 2px 0;
		font-weight: bold;
	}
	div.dateSelect td {
		color: #095994;
		font-size: 1em;
		padding: 3px;
		border-right: 2px solid #095994;
		border-bottom: 2px solid #095994;
	}
	div.dateSelect td.invalid {
		color: #2770a4;
	}
	div.dateSelect td.valid {
		color: #4e8cba;
		text-align: center;
		background: #12619b;
		cursor: pointer;
	}
	div.dateSelect td.active,
	div.dateSelect td.hover {
		background: #ffffff;
		color: #F7921E;
		cursor: pointer;
	}