/**************************************************************************************
	htmlDatePicker CSS file
	
	Feel Free to change the fonts, sizes, borders, and colours of any of these elements
***************************************************************************************/
/* The containing DIV element for the Calendar */
#dpCalendar {
	display: none;					/* Important, do not change */
	position: absolute;				/* Important, do not change */
	font-family: 'Trebuchet MS', Tahoma, Verdana, Arial, sans-serif;
	font-size: 10px;
	background-color: #FFF;
	color: #609;
	padding: 0.2em;
	width: 180px;
}
/* The table of the Calendar */
#dpCalendar table {
	border: 1px solid #FFF;
	background-color: #FFF;
	color: #000;
	font-size: 10px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	width: 100%;
}

#dpCalendar th {
	text-align: center;
	background: #FFF;
}

#dpCalendar td {
	text-align: centre;
	padding: 1px;
	width: 8px;
	height: 8px;
	background: #FFF;
	color: #000;
}

/* The Next/Previous buttons */
#dpCalendar .cellButton {
	background-color: #AF7C49;
	color: #000;
	border: 1px solid #AF7C49;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	color: #FFF;
	padding: 0.2em;
	text-align: center;
}

/* The Month/Year title cell */
#dpCalendar .cellMonth {
	background-color: #AF7C49;
	border: 1px solid #AF7C49;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	color: #FFF;
	padding: 0.2em;
	text-align: center;
}
/* Any regular day of the month cell */
#dpCalendar .cellDay {
	background-color: #ccc;
	color: black;
	text-align: center;
}
#dpCalendar .cellDay:hover {
	color: #FFF;
	background-color: #AF7C49;

}
/* The day of the month cell that is selected */
#dpCalendar .cellSelected {
	border: 1px solid #AF7C49;
	background-color: #CCC;
	color: #FFF;
	text-align: center;
}
/* The day of the month cell that is Today */
#dpCalendar .cellToday {
	background-color: #AF7C49;
	color: #FFF;
	text-align: center;
}
/* The day of the month cell that is inside a valid Range */
#dpCalendar .cellRange {
	background-color: #333;
	color: black;
	text-align: center;
}
/* Any cell in a month that is unused (ie: Not a Day in that month) */
#dpCalendar .unused {
	background-color: transparent;
	color: black;
}
/* The Cancel/No Date button */
#dpCalendar .cellCancel {
	background-color: #cccccc;
	color: black;
	border: 1px solid black;
	text-align: center;
}
/* The text inside the Cancel/No Date button */
#dpCalendar .cellCancel a {
	display: block;
}
/* The clickable text inside the calendar */
#dpCalendar a {
	text-decoration: none;
	background-color: transparent;
	color: #000;
	display: block;
}