/**************************************************************************************
  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: xx-small;
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  width: 280px;
}
/* The table of the Calendar */
#dpCalendar table {
  border: 1px solid black;
  background-color: #eeeeee;
  color: black;
  font-size: xx-small;
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  width: 100%;
}
/* The Next/Previous buttons */
#dpCalendar .cellButton {
  background-color: #121212;
  color: black;
  padding-left:6px;
  padding-top:8px!important;
}
/* The Month/Year title cell */
#dpCalendar .cellMonth {
  background-color: #121212;
  color: #fff;
  font-size:14px;
  text-align: center;
}
/* Any regular day of the month cell */
#dpCalendar .cellDay {
  background-color: #121212;
  color: white;
  text-align: center;
  padding:10px;
}
/* The day of the month cell that is selected */
#dpCalendar .cellSelected {
	border: 2px solid #FF4800;
	background-color: #363534;
	color: #white;
	text-align: center;
}
/* The day of the month cell that is Today */
#dpCalendar .cellToday {
	background-color: #623011;
	color: #000;
	text-align: center;
}
/* Any cell in a month that is unused (ie: Not a Day in that month) */
#dpCalendar .unused {
  background-color: transparent;
  color: white;
}
/* The cancel button */
#dpCalendar .cellCancel {
  background-color: #121212;
  color: black;
  border: 1px solid black;
  text-align: center;
  padding-top:8px!important;
}
/* The clickable text inside the calendar */
#dpCalendar a {
  text-decoration: none;
  background-color: transparent;
  color: orange;
}  

#dpCalendar tr{
height:30px!important;
}