/* Some resets for compatibility with existing CSS */
.date_input {
cursor: pointer;
padding:2px;
padding-right:20px !important;
background:url("../image/calendar2.gif") no-repeat right center white;
border:1px solid #aaa;
border-top-color:#abadb3;
border-right-color:#dbdfe6;
border-bottom-color:#e3e9ef;
border-left-color:#e2e3ea;
border-radius:1px;
width: 100px;
}
.dis {
cursor: default;
background:url("../image/calendar2dis.gif") no-repeat right center #f3f3f3;
}
.date_selector, .date_selector * {
  width: 200px;
  height: auto;
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
}
.date_selector {
  font:11px Arial, Geneva, sans-serif;
  background: #F2F2F2;
  border: 1px solid #bbb;
  padding: 5px;
  margin: -1px 0 0 -1px;
  position: absolute;
  z-index: 100000;
  display: none;
  box-shadow:0px 1px 2px rgba(0,0,0,0.2);
}
.date_selector_ieframe {
  position: absolute;
  z-index: 99999;
  display: none;
}
  .date_selector .nav {
    width: 100%; /*17em /* 7 * 2.5em */
  }
  .date_selector .month_nav, .date_selector .year_nav {
    margin: 0 0 3px 0;
    padding: 0;
    display: block;
    position: relative;
    text-align: center;
  }
  .date_selector .month_nav {
    float: left;
    width: 50%;
  }
  .date_selector .year_nav {
    float: right;
    width: 35%;
/*    margin-right: -8px; /* Compensates for cell borders */
  }
  .date_selector .month_name, .date_selector .year_name {
    font-weight: normal;
    line-height: 20px;
  }
  .date_selector .button {
    display: block;
    position: absolute;
    top: 0;
    width: 18px;
    height: 18px;
    line-height: 17px;
    font-weight: bold;
    color: #003C78;
    text-align: center;
    font-size: 120%;
    overflow: hidden;
    border: 1px solid #F2F2F2;
  }
    .date_selector .button:hover, .date_selector .button.hover {
      background: none;
      color: #003C78;
      cursor: pointer;
      border-color: #ccc;
    }
  .date_selector .prev {
    left: 0;
  }
  .date_selector .next {
    right: 0;
  }
  .date_selector table {
    border-spacing: 0;
    border-collapse: collapse;
  }
    .date_selector th, .date_selector td {
      border: 1px solid #ccc;
      width: 2.1em;
      height: 1.8em;
      padding: 0 !important;
      text-align: center;
      color: black;
/*      font-size: 70%; */
    }
    .date_selector td {
      border: 1px solid #ccc;
      line-height: 1.5em;
      text-align: center;
      white-space: nowrap;
      color: #003C78;
      background: white;
    }
    .date_selector td.today {
      background: #FFFEB3;
    }
    .date_selector td.unselected_month {
      color: #ccc;
    }
    .date_selector td.selectable_day {
      cursor: pointer;
    }
    .date_selector td.selected {
      background: #D8DFE5;
      font-weight: bold;
    }
    .date_selector td.selectable_day:hover, .date_selector td.selectable_day.hover {
      background: #003C78;
      color: white;
    }
