/* Style the calendar custom widget */
#date-range {
  position:relative;
  z-index: 1;
  margin-bottom: 10px;
  /*height: 28px;*/
  height: 38px;
}
#date-range-title {
    float: left;
}
#date-range-title h1 {
    margin: 0px;
    font-size: 20px;
}
#date-range-field {
  width: 290px;
  height: 26px;
  overflow: hidden;
  position: relative;
  cursor:pointer;
  border: 1px solid #CCCCCC;
  border-radius: 5px 5px 5px 5px;
  float: right;
  background-color: #FFFFFF;
}
#date-range-field a  {
  color:#B2B2B2;
  background-color:#F7F7F7;
  text-align:center;
  display: block;
  position: absolute;
  width: 26px;
  height: 23px;
  top: 0;
  right: 0;
  text-decoration: none;
  padding-top:6px;
  border-radius: 0 5px 5px 0;
}
#date-range-field span {
  font-size: 12px;
  font-weight: bold;
  color: #404040;
  position: relative;
  top: 0;
  height: 26px;
  line-height: 26px;
  left: 5px;
  width: 250px;
  text-align: center;
}

#datepicker-calendar {
  position: absolute;
  top: 27px;
  right: 0;
  overflow: hidden;
  width: 497px;
  height:153px;
  background-color: #F7F7F7;
  border: 1px solid #CCCCCC;
  border-radius: 5px 0px 5px 5px;
  display:none;
  padding:10px 0 15px 10px;
}

/* Remove default border from the custom widget since we're adding our own.  TBD: rework the dropdown calendar to use the default borders */
#datepicker-calendar div.datepicker {
  background-color: transparent;
border: none;
border-radius: 0;
padding: 0;
}

#datepicker-links {
    position: absolute;
    z-index: 2;
/*    padding: 0px 15px;
    width: 477px;*/
    padding: 0px 5px;
    width: 497px;
    left: 0px;
    bottom: 10px;
}

#datepicker-links #datepicker-links-left {
    float: left;
    /*font-size: 11px;*/
    font-size: 10px;
}

#datepicker-links #datepicker-links-left a {
    margin-right: 5px;
}

#datepicker-links #datepicker-links-right {
    float: right;
    /*font-size: 12px;*/
    font-size: 11px;
}

#datepicker-links #datepicker-links-right a {
    margin-left: 5px;
}

#date-weight {
    z-index: 1;
    font-size: 11px;
    font-style: italic;
    color: #565656;
    line-height: 100%;
}

div.datepicker {
    /*font-family: courier;*/
    font-family: Arial, sans-serif;
}

div.datepicker table {
    font-size: 12px;
}

div.datepicker table td.datepickerSpace {
    /*padding: 0px 3px;*/
}

div#datepicker-holder {
    padding: 10px;
}