/**************************************************************************************
  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: #000000;
  color: #FFFFFF;
  font-size: xx-small;
  font-family: Arial;
  width: 170px;
  z-index: 100;
}
/* The table of the Calendar */
#dpCalendar table {
  border: 1px solid #999999;
  background-color: #FBFAF3;
  color: #333333;
  font-size: xx-small;
  font-family: Arial;
  text-align: center;
  width: 100%;
}
/* The Next/Previous buttons */
#dpCalendar .cellButton {
  background-color: #FBFAF3;
  color: #333333;
}
/* The Month/Year title cell */
#dpCalendar .cellMonth {
  background-color: #FBFAF3;
  color: #333333;
  text-align: center;
}
/* An historic day of the month cell */
#dpCalendar .cellOld {
  background-color: #FBFAF3;
  border:solid 1px transparent;
  color: #666666;
  text-align: center;
}
/* Any regular day of the month cell */
#dpCalendar .cellDay {
  background-color: #FBFAF3;
  border:solid 1px transparent;
  color: #AE3919;
  text-align: center;
}
/* The day of the month cell that is selected */
#dpCalendar .cellSelected {
  border: 1px solid #AE3919;
  background-color: #ffdddd;
  color: #000000;
  text-align: center;
}
/* The day of the month cell that is Today */
#dpCalendar .cellToday {
  background-color: #dddddd;
  color: #000000;
  text-align: center;
}
/* Any cell in a month that is unused (ie: Not a Day in that month) */
#dpCalendar .unused {
  background-color: transparent;
  color: #000000;
}
/* The cancel button */
#dpCalendar .cellCancel {
  background-color: #EEEAE1;
  color: black;
  border: 1px solid #000000;
  text-align: center;
}
/* The clickable text inside the calendar */
#dpCalendar a {
  text-decoration: none;
  background-color: transparent;
  color: #AE3919;
}