/**************************************************************************************
  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: #eeeeee;
  color: black;
  font-size: 10px;
  width: 150px;
  z-index:1000;
}
/* The table of the Calendar */
#dpCalendar table {
  border: 2px solid #CCCCCC;
  background-color: #DDDDDD;
  color: black;
  font-size: 10px;
  width: 100%px;
}
/* The Next/Previous buttons */
#dpCalendar .cellButton {
  background-color: #38476F;
  color: #FFFFFF;
}
/* The Month/Year title cell */
#dpCalendar .cellMonth {
  background-color: #333333;
  color: #FFFFFF;
  font-weight:bold;
  text-align: center;
}
/* An historic day of the month cell */
#dpCalendar .cellOld {
  background-color: #CCCCCC;
  border:solid 1px transparent;
  color: #A6A6A6;
  text-align: center;
}
/* Any regular day of the month cell */
#dpCalendar .cellDay {
  background-color: #FFFFFF;
  border:solid 1px transparent;
  color: #426FD9;
  text-align: center;
}
/* The day of the month cell that is selected */
#dpCalendar .cellSelected {
  background-color: #426FD9;
  text-decoration:bold;
  color: #FFFFFF;
  text-align: center;
  border:solid 1px #000000;
}
/* The day of the month cell that is Today */
#dpCalendar .cellToday {
  background-color: #333333;
  color: #FFFFFF;
  font-weight:bold;
  text-align: center;
}
/* Any cell in a month that is unused (ie: Not a Day in that month) */
#dpCalendar .unused {
  background-color: #CCCCCC;
  color: #A6A6A6;
}
/* The cancel button */
#dpCalendar .cellCancel {
  background-color: #38466D;
  color: #FFFFFF;
  font-weight:bold;
  border: 1px solid black;
  text-align: center;
}
/* The clickable text inside the calendar */
#dpCalendar a {
  text-decoration: none;
  background-color: transparent;
  color: #344269;
}  
