/**************************************************************************************
	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 */
	background-color: #f0f0e2;
  border-color:#e3e3c1;
  border-width:1px;
	color: black;
	font-size: xx-small;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	width: 150px;
  z-index:50;
}
/* The table of the Calendar */
#dpCalendar table {
	background-color: #f0f0e2;
  border-color:#e3e3c1;
  border-width:2px;
  border-style:solid;
	color: black;
	font-size: xx-small;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	width: 100%;
}
/* The Next/Previous buttons */
#dpCalendar .cellButton {
	background-color: #e3e3c1;
	color: #693f1d;
  font-weight:bold;
}
/* The Month/Year title cell */
#dpCalendar .cellMonth {
	background-color: #e3e3c1;
	color: #693f1d;
  font-weight:bold;
	text-align: center;
}
/* Any regular day of the month cell */
#dpCalendar .cellDay {
  border-color:#e3e3c1;
  border-width:1px;
  border-style:solid;
	color: black;
	text-align: center;
}
/* The day of the month cell that is selected */
#dpCalendar .cellSelected {
	border: 1px solid #693f1d;
	color: black;
	text-align: center;
}
/* The day of the month cell that is Today */
#dpCalendar .cellToday {
	color: black;
	text-align: center;
}
/* Any cell in a month that is unused (ie: Not a Day in that month) */
#dpCalendar .unused {
	color: black;
}
/* The cancel button */
#dpCalendar .cellCancel {
	background-color: #f0f0e2;
	color: black;
	border: 1px solid black;
	text-align: center;
}
/* The clickable text inside the calendar */
#dpCalendar a {
	text-decoration: none;
	background-color: transparent;
	color: #8b8399;
}