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

.hidden {
	opacity: 0;
	position: absolute;
}
.visible {
	opacity: 1;
}


input.calendar,
select.calendar {
	width: 99px;
}

button.calendar {
background:transparent url(/images/ui/buttons.png) no-repeat scroll 0 -188px;
height:18px;
margin-left:5px;
padding:2px;
text-indent:-5000px;
width:22px;
}
/*
button.calendar {
	background: url(/images/ui/calendar/calendar-icon.gif);
	border: 0;
	cursor: pointer;
	float: left;
	height: 20px;
	margin-right: 6px;
	width: 20px;
}
button.calendar:hover,
button.calendar.active {
	background-position: 0 20px;
}
*/
div.calendar {
	background: #FFF; /*url(/images/ui/calendar/calendar.png);*/
	padding: 0 5px;
	text-align: center;
	width: 147px;
	border:1px solid #c0c0c0;
	-moz-border-radius:7px;
	-webkit-border-radius:7px
}	
	div.calendar * {
		margin: 0;
		padding: 0;
	}	
	div.calendar div {
		background: none !important;
		cursor: move;
		overflow: hidden;
		position: relative;
		width: 147px;
	}	
	
	div.calendar caption {
		font: normal 12px/16px Arial, Helvetica, sans-serif;
		padding-top: 6px;
		text-align: center;
		width: 100%;
		color:#808284;
        font-weight:bold;
	}
	div.calendar caption a {
		cursor: pointer;
		display: block;
		height: 12px;
		overflow: hidden;
		position: absolute;
		text-indent: -100px;
		top: 8px;
		width: 11px;
	}
	div.calendar caption a.prev {
		background-image: url(/images/ui/calendar/calendar-prev.gif);
		left: 0;
	}
	div.calendar caption a.next {
		background-image: url(/images/ui/calendar/calendar-next.gif);
		right: 0;
	}
	div.calendar caption a:hover {
		background-position: 0 12px;
	}
	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 table {
		background: #FFF;
		border: 0;
		border-collapse: collapse;
		border-spacing: 0;
		cursor: default;
		margin: 10px auto 0 auto;
		overflow: hidden;
		width: 147px;
	}
	div.calendar th {
	    color:#FBD7E6 !important;
	    background:#ED1D8F
	} 
	div.calendar td,
	div.calendar th {
		border: 0;
		color: #0597DB;
		font: normal 12px Arial, Helvetica, sans-serif;
		height: 21px;
		text-align: center;
		width: 21px;
		padding-top:5px
	}
	div.calendar td {
		/*background: url(/images/ui/calendar/calendar-td.gif);*/
		color: #FFF;
		font-size: 11px;
	}
	div.calendar td.invalid {
		background-color:#DDD;
        color:#AAA;
	}
	div.calendar td.valid {
		/*background: url(/images/ui/calendar/calendar-valid.gif);*/
		color: #0597DB;
		cursor: pointer;
	}
	div.calendar td.hilite {
		background: url(/images/ui/calendar/calendar-hilite.gif);
	}
	div.calendar td.inactive {
		background: url(/images/ui/calendar/calendar-td.gif) 0 100%;
		color: #FFF;
	}
	div.calendar td.active,
	div.calendar td.hover {
	    background-color:#FBD7E6;
        color:#ED1D8F;
		/*background: url(/images/ui/calendar/calendar-valid.gif) 0 100%;*/
		cursor: pointer;
	}
