/*
---

name: Date Picker

description: Styles for Inform 2.0 Date Picker

provides: [CSS.DatePicker]

...
*/
.datepicker {
  background-color: #FFF;
  border: 1px solid #1385D9;
  -moz-box-shadow: 3px 3px 5px #CCC;
  -webkit-box-shadow: 3px 3px 5px #CCC;
  box-shadow: 3px 3px 5px #CCC;
  color: #205793;
  font-size: 1.2em;
  height: 162px;
  line-height: 1.3334;
  margin-top: 11px;
  position: absolute;
  width: 193px;
}
.datepicker table {
  font-size: 100%;
  line-height: normal;
}
.datepicker table td,
.datepicker table th {
  word-wrap: normal;
}
.datepicker table tbody tr {
  border: 0;
}
.datepicker .header {
  height: 29px;
  margin: 0 0 4px -9px;
  padding: 0 0 0 9px;
  position: relative;
}
.datepicker .header:before {
  border-left: 9px solid transparent;
  border-bottom: 9px solid #178ABB;
  border-right: 9px solid transparent;
  content: '';
  margin: -10px 0 0 2px;
  position: absolute;
  right: 5px;
}
.datepicker .header .closeButton {
  display: none;
}
.datepicker .header .title {
  background-color: #178ABB;
  padding: 6px 39px 7px;
  text-align: center;
}
.datepicker .header .titleText {
  color: #FFF;
  font-weight: bold;
}
.datepicker .header .previous, .datepicker .header .next, .datepicker .header .closeButton {
  color: #FFF;
  cursor: pointer;
  font-size: 1.3em;
  height: 29px;
  overflow: hidden;
  position: absolute;
  top: 3px;
  width: 29px;
}
.datepicker .header .previous {
  left: 16px;
}
.datepicker .header .next {
  right: -10px;
}
.datepicker .body {
  height: 132px;
  overflow: hidden;
  margin: 5px;
  position: relative;
}
.datepicker .days .day {
  background: 0;
  float: left;
  height: 16px;
  margin: 0 1px 1px 0;
  overflow: hidden;
  padding-top: 1px;
  text-align: center;
  width: 25px;
}
.datepicker .days .titles {
  font-weight: bold;
  height: 18px;
  text-transform: uppercase;
}
.datepicker .days .day0 {
  margin-right: 0;
}
.datepicker .days .week5 .day {
  margin-bottom: 0;
}
.datepicker .days .week .day {
  cursor: pointer;
}
.datepicker .days .week .day:hover {
  background-color: #FFF5CC;
  font-weight: bold;
}
.datepicker .days .otherMonth {
  color: #E7E7E7;
}
.datepicker .days .selected {
  background-color: #F3F3F3;
  font-weight: bold;
}
.datepicker .months .month {
  cursor: pointer;
  float: left;
  height: 21px;
  margin: 0 1px 1px 0;
  overflow: hidden;
  padding-top: 6px;
  text-align: center;
  width: 57px;
}
.datepicker .months .month3, .datepicker .months .month6, .datepicker .months .month9, .datepicker .months .month12 {
  margin-right: 0;
}
.datepicker .months .month10, .datepicker .months .month11, .datepicker .months .month12 {
  margin-bottom: 0;
}
.datepicker .years .year {
  cursor: pointer;
  float: left;
  height: 21px;
  margin: 0 1px 1px 0;
  overflow: hidden;
  padding-top: 6px;
  text-align: center;
  width: 35px;
}
.datepicker .years .year4, .datepicker .years .year9, .datepicker .years .year14, .datepicker .years .year19 {
  margin-right: 0;
}
.datepicker .years .year15, .datepicker .years .year16, .datepicker .years .year17, .datepicker .years .year18, .datepicker .years .year19 {
  margin-bottom: 0;
}
.datepicker .unavailable {
  color: #2C2C2C !important;
  cursor: default !important;
  text-decoration: line-through;
}
