/* Calendar: a Javascript class for Mootools that adds accessible and unobtrusive date pickers to your form elements <http://electricprism.com/aeron/calendar> */
/* Default CSS for Calendar (navigation: 1), Copyright (c) 2007 Aeron Glemann <http://electricprism.com/aeron> */

th {
  text-align: left;
  color: #444;
}

.hidden {
  opacity: 0;
  position: absolute;
}
.visible {
  opacity: 1;
}


input.calendar,
select.calendar {
  width: 80%;
}
select {
  width: 90%;
}

button.calendar {
  background: url(/images/calendar-icon.gif);
  border: 0;
  cursor: pointer;
  height: 18px;
  margin-left: 6px;
  margin-bottom: 4px;
  width: 18px;
}
button.calendar:hover,
button.calendar.active {
  background-position: 0 18px;
}

div.calendar {
  background: #f1f1f1;
  height: 195px;
  padding: 0 6px;
  text-align: center;
  width: 147px;
}	
div.calendar * {
  margin: 0;
  padding: 0;
}	
div.calendar div {
  background: none !important;
  height: 185px;
  overflow: hidden;
  padding-top: 10px;
  position: relative;
  width: 147px;
}	

  div.calendar caption {
    color: #444;
    font: bold 14px Arial, Helvetica;
    padding: 6px 0;
    text-align: center;
    width: 100%;
  }
  div.calendar caption a {
    cursor: pointer;
    display: block;
    height: 11px;
    overflow: hidden;
    position: absolute;
    text-indent: -100px;
    top: 17px;
    width: 12px;
  }
  div.calendar caption a.prev {
    background-image: url(/images/calendar-prev.gif);
    left: 0;
  }
  div.calendar caption a.next {
    background-image: url(/images/calendar-next.gif);
    right: 0;
  }

  div.calendar caption span {
    height: 25px;
    position: relative;
    text-align: center;
  }
  div.calendar caption span.month {
    padding-right: 8px;
  }
  div.calendar caption span.month:after {
    content: ',';
  }

  div.calendar table {
    background: #FFF;
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    cursor: default;
    margin: 0 auto;
    overflow: hidden;
    width: 147px;
  }
  div.calendar td,
  div.calendar th {
    border: 0;
    color: #444;
    font: normal 12px Arial, Helvetica, sans-serif;
    height: 21px;
    text-align: center;
    width: 21px;
  }
  div.calendar th {
    font-weight: bold;
  }
  div.calendar td {
    color: #e4e4e4;
    font-size: 11px;
  }
  div.calendar td.invalid {
    color: #999;
  }
  div.calendar td.valid {
    color: #f26024;
    cursor: pointer;
  }
  div.calendar td.hilite {
  }
  div.calendar td.inactive {
    color: #e4e4e4;
  }
  div.calendar td.active,
  div.calendar td.hover {
    color: #000;
    cursor: pointer;
  }
