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

button.calendar {
	background: url(../images/layout/btn_calendar.gif);
	border: 0;
	cursor: pointer;
	height: 12px;
	margin-right: 10px;
	width: 15px;
}


div.calendar {
	height: 195px;
	padding: 0 6px;
	text-align: center;
	width: 170px;
	border: 1px solid #ccc;
	margin-left: 8px;
	background-color: #fff;
}	

div.calendar * {
	margin: 0;
	padding: 0;
}	

div.calendar div {
	background: none !important;
	cursor: move;
	height: 185px;
	overflow: hidden;
	width: 170px;
}	
	
div.calendar caption {
	color: #333;
	font: normal 12px/16px Arial, Helvetica, sans-serif;
	padding-top: 6px;
	text-align: center;
	width: 100%;
}

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 caption a {
		cursor: pointer;
		height: 12px;
		width: 11px;
		font-weight: bold;
	}
div.calendar caption a.prev {
	padding-right: 20px;
}

div.calendar caption a.next {
	padding-left: 20px;
}

div.calendar table {
	background: #FFF;
	border: 0;
	cursor: default;
	margin: 0 auto;
	overflow: hidden;
	width: 170px;
	border-spacing: 1px;
}

div.calendar td,
div.calendar th {
	border: 0;
	color: #999;
	font: normal 11px Arial, Helvetica, sans-serif;
	height: 21px;
	text-align: center;
	width: 35px;
}

div.calendar td {
	color: #ccc;
	font-size: 11px;
}

div.calendar td.invalid {
	color: #999;
}

div.calendar td.valid {
	color: #444;
	cursor: pointer;
	background-color: #ffffcc;
}

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%;
	background: #000;
	color: #FFF;
	cursor: pointer;
}
