/* 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(../images/calendar.png);
	
	cursor: pointer;
/*	float: left; border: 0;*/
	height: 20px;
	margin: -5px 10px 0px 5px; 
	position: relative;
	top: -5px;
	width: 20px;
}
button.dashboard:hover,
button.dashboard.active {
/*	background-position: 0 20px;*/
}

div.dashboard {
	background: url(../images/calendar-background.gif);
	height: 175px;
	padding: 0 12px;
	text-align: center;
	width: 147px;
}	
	div.dashboard div {
		background: none !important;
		cursor: move;
		height: 165px;
		overflow: hidden;
		padding-top: 10px;
		position: relative;
		width: 147px;
	}	
	
	div.dashboard caption {
		color: #EE6600;
		font: normal 12px/17px Arial, Helvetica, sans-serif;
		padding-top: 4px;
		text-align: center;
		width: 100%;
	}
	div.dashboard caption a {
		cursor: pointer;
/*		display: block;
		height: 11px;	*/
/*		
		
		
	
		top: 16px;
			width: 11px;
		*/
		overflow: hidden;
		text-indent: -100px;
		position: absolute;
		width: 20px;
		height: 20px;
		
	}
	div.dashboard caption a.prev {
		background-image: url(../images/calendar-prev.gif);
		background-position: center;
		background-repeat: no-repeat;
		left: 1px;
	}
	div.dashboard caption a.next {
		background-image: url(../images/calendar-next.gif);
		background-position: center;
		background-repeat: no-repeat;
		right: 1px;
	}
	div.dashboard caption a.next:hover {
		background-image: url(../images/calendar-next-hover.gif);
	}
	div.dashboard caption a.prev:hover {
		background-image: url(../images/calendar-prev-hover.gif);
	}
	
	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: 147px;
	}
	div.dashboard td,
	div.dashboard th {
		border: 0;
		color: #999;
		font: normal 12px Arial, Helvetica, sans-serif;
		height: 19px;
		text-align: center;
		width: 21px;
	}
	div.dashboard td {
		color: #333;
		font-size: 11px;
		padding-right: 5px;
		text-align: right;
		width: 16px;
	}
	div.dashboard td.invalid {
		color: #666;
	}
	div.dashboard td.valid {
		color: #FFF;
		cursor: pointer;
	}
	div.dashboard td.active,
	div.dashboard td.hover {
		color: #EE6600;
		cursor: pointer;
	}