/* Customized calendar_date_select/jquery.calendardateselect.css */

.calendar_date_select {
  color: white;
  background-color: #d3dbff;
  /*border:#777 1px solid;*/
  display:block;
  width:250px;
  z-index: 1000;
  -webkit-border-radius:6px;
  -moz-border-radius:6px;
  font-size: 120%;
}
/* this is a fun ie6 hack to get drop downs to stay behind the popup window.  This should always be just underneath .calendar_date_select */
iframe.ie6_blocker {
  position: absolute;
  z-index: 999;
}

.calendar_date_select select { font-size:11px; }

.calendar_date_select .cds_header {
  /*background-color: #ccc;*/
  /*border-bottom: 2px solid #aaa;*/
  text-align:center;
}

.calendar_date_select .cds_header span {
  font-size: 14px;
  color: #5572b8;
  font-weight: bold;
}

.calendar_date_select .cds_header a {
  width:22px;
  height:20px;
  text-decoration: none;
  font-size: 13px;
  /*color:black !important;*/
  color: black;
  font-weight: bold;
}

.calendar_date_select .cds_header a:hover {
  color: #999;
  font-weight: bold;
}

.calendar_date_select .cds_header a.prev {
  float:left;
}
.calendar_date_select .cds_header a.next {
  float:right;
}

.calendar_date_select .cds_header a.close {
  float:right;
  display:none;
}

.calendar_date_select .cds_header select.month {
  width:90px;
}

.calendar_date_select .cds_header select.year {
  width:61px;
}

.calendar_date_select .cds_footer {
  background-color: #252849;
  padding:3px;
  font-size:12px;
  text-align:center;
}

.calendar_date_select .cds_buttons {
  text-align: center;
  padding:5px 0px;
  background-color: #757899;
}

.calendar_date_select .cds_buttons a {
  color: white;
  font-size: 12px;
}

.calendar_date_select table {
  margin: 0px;
  padding: 0px;
}

.calendar_date_select thead th {
  padding: 0;
  margin: 0;
  font-weight:bold;
  background-color: #aaa;
  color: white !important;
  text-align: center;
}

.calendar_date_select tbody td {
  /*border-bottom: 1px solid #ddd;*/
}

.calendar_date_select td {
  padding: 0;
  font-size:12px;
  width: 24px;
  height: 21px;
  text-align:center;
  vertical-align: middle;
  background-color: #f0f0f0;
}
.calendar_date_select td.weekend {
  background-color: #e0e0e0;
  border-left:1px solid #ccc;
  border-right:1px solid #ccc;
}

.calendar_date_select td div {
  color: #000;
}
.calendar_date_select td div.other {
  color: #ccc;
}

.calendar_date_select td:hover {
  background-color: #ccc;
}

.calendar_date_select td.today {
  background: #ffc;
	color: #000;
	border: 1px solid #fc6;
}

.calendar_date_select td.selected div {
  color:white;
}
.calendar_date_select td.selected {
  background-color:#777;
  border: none;
}

.calendar_date_select td.disabled div {
  color: #e6e6e6;
}

.fieldWithErrors .calendar_date_select {
  border: 2px solid red;
}
