/* 
  datepicker styles
  David Lee 2005
  all parts user servicable
*/
.date_picker {
  /* comment out this line to show by default: */
  display: none;
  /* comment out this line to prevent calendar 'floating' over page: */
  position: absolute;
  background-color:white;
  padding: 3px;
  border: 1px solid silver;
  width: 170px;
}

.date_picker table {
  width: 170px;
  font-family: verdana, sans-serif;
}
.date_picker th {
  font-size: 10px;
  color: #333;
}

.date_picker .day_labels th {
  color: darkgreen;
  font-size: 9px;
  font-weight: normal;
  background-color: #DEDEDE;
  text-align: center;
}

.date_picker td {
  font-size: 9px;
  background-color: #EFEFEF;
  padding: 2px;
}

.date_picker th.clickable{
    cursor: pointer; 
    cursor: hand;
}

.date_picker td.clickable{
    cursor: pointer; 
    cursor: hand;
    text-align: center;
    width: 18px;
}



.date_picker .cancel_butt a {
  font-size: 9px;
  color: gray;
  font-family: verdana, sans-serif;
  text-decoration: none;
}
.date_picker .cancel_butt a:hover {
  background-color: gray;
  color: white;
}

