/*================================================================
	DatePicker
================================================================*/

.datepicker {
  background: #fff;
  border: 2px solid #4783a5;
  width: 250px;
  position: absolute;
  zIndex: 100;
}

.datepicker .month {
  background: #4783a5;
  color: #fff;
  line-height: 24px;
  margin: 0;
  text-align: center;
}

.datepicker .prev-month, .datepicker .next-month {
  color: #fff;
  line-height: 24px;
  padding: 0 8px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
}

.datepicker .next-month {
  left: 204px;
  text-align: right;
}

.datepicker table {
  border: 0;
  margin: 0;
  width: 100%;
}

.datepicker td, .datepicker td {
  font-size: 11px;
  padding: 2px 4px;
  text-align: center;
}

.datepicker .enabled {
  cursor: pointer;
}

.datepicker .disabled {
  cursor: default;
  color: #aaa;
}

.datepicker .hover {
  background: #4e9fce;
  color: #fff;
}

.datepicker .selectedDay {
  border: 2px solid #999;
}
