/* Some resets for compatibility with existing CSS */
input.date {
	width: 6em;
}
.date_selector, .date_selector * {
  width: auto;
  height: auto;
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
}
.date_selector {
  background: #fff;
  border: 1px solid #bbb;
  padding: 7px;
  margin: 20px 0 0 398px;
  position: absolute;
  z-index: 100000;
  display: none;
}
.date_selector_ieframe {
  position: absolute;
  z-index: 99999;
  display: none;
}
.date_selector .nav {
    /*width: 50%; *//* 7 * 2.5em */
    overflow: hidden;
    margin: 7px auto;
    font-size: 30px;
    font-family: PFDinTextCompProLightRegular, Arial, sans-serif;
}
.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: 55%;*/
}
.date_selector .year_nav {
    float: right;
    /*width: 40%;*/
    margin-right: 10px; /* Compensates for cell borders */
}
.date_selector .month_name,
.date_selector .year_name {
    /*line-height: 20px;*/
    padding-left: 20px;
    padding-right: 20px;
}
.date_selector .button {
    display: block;
    position: absolute;
    top: 5px;
    width: 18px;
    height: 18px;
    line-height: 17px;
    /*font-weight: bold;*/
    color: #8c8c8c;
    text-align: center;
    /*font-size: 120%;*/
    overflow: hidden;
    /*border: 1px solid #F2F2F2;*/
}
.date_selector .button:hover, .date_selector .button.hover {
    background: none;
    color: #454545;
    cursor: pointer;
    /*border-color: #ccc;*/
}
.date_selector .prev {
    left: 0;
}
.date_selector .next {
    right: 0;
}
.date_selector table {
    border-spacing: 0;
    border-collapse: collapse;
    clear: both;
}

.date_selector table thead {
    display: none;
}

.date_selector th {
    font-weight: normal;
}
.date_selector th, .date_selector td {
    width: 45px;
    height: 45px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    color: black;
    font-family: PFDinTextCompProLightRegular, Arial, sans-serif;
    font-size: 30px;
}
.date_selector td {
    border: 1px solid #ccc;
    text-align: center;
    white-space: nowrap;
    color: #00b4ff;
    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: #00b4ff;
    color: white;
}
