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

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

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

	div.dashboard {
		padding: 0 12px;
		text-align: center;
		margin:.8em;
	}	
	div.dashboard div {
		overflow: hidden;
		padding-top: 10px;
		position: relative;
		
	}	
	
	div.dashboard caption {
	background:url(../img/calendar/caption.gif) repeat-x 0 0;
		color: #000;
		font-weight:bold;
		padding-top: .3em;
		text-align: center;
		width: 100%;
	}
	div.dashboard caption a {
		cursor: pointer;
		display: block;
		height: 11px;
		overflow: hidden;
		position: absolute;
		text-indent: -100px;
		top: 16px;
		width: 11px;
	}
	div.dashboard caption a.prev {
		background-image: url(../img/calendar/dashboard-prev.gif);
		left: 1px;
	}
	div.dashboard caption a.next {
		background-image: url(../img/calendar/dashboard-next.gif);
		right: 1px;
	}
	div.dashboard caption a:hover {
		background-position: 0 11px;
	}
	div.dashboard caption span {
		height: 25px;
		position: relative;
		text-align: center;
	}
	div.dashboard caption span.month {
		padding-right: 8px;
	}
	div.dashboard caption span.month:after {
		content: ',';
	}

	div.dashboard table {
		/*border: 0;
		border-collapse: collapse;*/
		border-spacing: 0;
		cursor: default;
		margin: 0 auto;
		overflow: hidden;
		width: 100%;
	}

	div.dashboard td,
	div.dashboard th {

		border: 0;
		/*font: normal 12px Arial, Helvetica, sans-serif;*/
		height: 2em;
		text-align: center;
		font-weight:bold;
		text-align:center;
	}
	div.dashboard th
		{
		background:#fff;
		color:#000;	
		font-size:.9em;
		text-transform:lowercase;
		}
	div.dashboard td {
		color: #78878c;
		font-size: 11px;
		text-align: center;
		border:1px solid #000;width:14%;
	}
	div.dashboard td.invalid {
		background:#d6e2e6;
		color: #000;
	}
	div.dashboard td.valid {
		color: #42d1ff;
		cursor: pointer;
	}

	div.dashboard td.hover {
		color: #cec945;
		cursor: pointer;
	}	div.dashboard td.active
		{
		background: #42d1ff;
		color:#fff;
		}