
/* The main calendar widget.  DIV containing a table. */
div.calendar {
  position: relative;
}

.calendar, .calendar table {
  font-size: 11px;
  color: #000;
  cursor: default;
  font-family: Tahoma, verdana, sans-serif;
  background-color: #FFFEE1;
  border-top: 1px #655 solid;
  border-right: 1px #655 solid;
  border-bottom: 1px #655 solid;
  border-left: 1px #655 solid;
}

/* Header part -- contains navigation buttons and day names. */
.calendar .button {
  text-align: center; /* They are the navigation buttons */
  padding-top: 2px;
  padding-left: 2px;
  padding-right: 2px;
  padding-bottom: 2px;
}

.calendar .nav {
  background-color: E7EEBA;
  background-repeat: no-repeat;
  background-image: url(menuarrow.gif);
  background-position: 100% 100%;
}

.calendar thead .title {
  font-weight: bold; /* Pressing it will take you to the current date */
  text-align: center;
  color: #fed;
  padding-top: 2px;
  padding-left: 2px;
  padding-right: 2px;
  padding-bottom: 2px;
  background-color: #CA281C;
}

.calendar thead .headrow {
  color: #000;
  background-color: #A7CB2C;
}

.calendar thead .name {
  text-align: center;
  color: #000;
  padding-top: 2px;
  padding-left: 2px;
  padding-right: 2px;
  padding-bottom: 2px;
  border-bottom: 1px #655 solid;
}

.calendar thead .weekend {
  color: #CA281C;
}

.calendar thead .hilite {
  background-color: #FFFC82;
  color: #000;
  padding-top: 1px;
  padding-left: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
  border-top: 1px #f40 solid;
  border-right: 1px #f40 solid;
  border-bottom: 1px #f40 solid;
  border-left: 1px #f40 solid;
}

.calendar thead .active {
  background-color: #A7CB2C;
  padding-top: 2px;
  padding-left: 2px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.calendar thead .daynames {
  background-color: #FFFC82;
}

/* The body part -- contains all the days in month. */
.calendar tbody .day {
  width: 2em;
  text-align: right;
  padding-top: 2px;
  padding-left: 2px;
  padding-right: 4px;
  padding-bottom: 2px;
}

.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #bbb;
}

.calendar tbody .day.othermonth.oweekend {
  color: #fbb;
}

.calendar table .wn {
  padding-top: 2px;
  padding-left: 2px;
  padding-right: 3px;
  padding-bottom: 2px;
  background-color: #A7CB2C;
  border-right: 1px #000 solid;
}

.calendar tbody .rowhilite td {
  background-color: #FFFF66;
}

.calendar tbody .rowhilite td.wn {
  background-color: #CFE485;
}

.calendar tbody td.hilite {
  padding-top: 1px;
  padding-left: 1px;
  padding-right: 3px;
  padding-bottom: 1px;
  background-color: #ffe;
  border-top: 1px #bbb solid;
  border-right: 1px #bbb solid;
  border-bottom: 1px #bbb solid;
  border-left: 1px #bbb solid;
}

.calendar tbody td.active {
  padding-top: 2px;
  padding-left: 2px;
  padding-right: 2px;
  padding-bottom: 0px;
  background-color: #FFFFCA;
}

.calendar tbody td.selected {
  font-weight: bold;
  padding-top: 1px;
  padding-left: 1px;
  padding-right: 3px;
  padding-bottom: 1px;
  background-color: #F9D6D2;
  border-top: 1px #000 solid;
  border-right: 1px #000 solid;
  border-bottom: 1px #000 solid;
  border-left: 1px #000 solid;
}

.calendar tbody td.weekend {
  color: #f00;
}

.calendar tbody td.today {
  font-weight: bold;
}

.calendar tbody .disabled {
  color: #999;
}

.calendar tbody .emptycell {
  visibility: hidden;
}

.calendar tbody .emptyrow {
  display: none;
}

/* The footer part -- status bar and "Close" button */
.calendar tfoot .footrow {
  text-align: center;
  color: #000;
  background-color: #FFFEE1;
}

.calendar tfoot .ttip {
  border-top: 1px #655 solid;
  color: #CA281C;
  background-color: #EEDDC8;
}

.calendar tfoot .hilite {
  padding-top: 1px;
  padding-left: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
  background-color: #faa;
  border-top: 1px #f40 solid;
  border-right: 1px #f40 solid;
  border-bottom: 1px #f40 solid;
  border-left: 1px #f40 solid;
}

.calendar tfoot .active {
  padding-top: 2px;
  padding-left: 2px;
  padding-right: 0px;
  padding-bottom: 0px;
  background-color: #c77;
}

/* Combo boxes (menus that display months/years for direct selection) */
.calendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  color: #000;
  font-size: 90%;
  z-index: 100;
  background-color: #ffe;
  border-top: 1px #655 solid;
  border-right: 1px #655 solid;
  border-bottom: 1px #655 solid;
  border-left: 1px #655 solid;
}

.calendar .combo .label, .calendar .combo .label-IEfix {
  text-align: center;
  padding-top: 1px;
  padding-left: 1px;
  padding-right: 1px;
  padding-bottom: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .hilite {
  background-color: #fc8;
}

.calendar .combo .active {
  border-top: 1px #a64 solid;
  font-weight: bold;
  background-color: #fee;
  border-bottom: 1px #a64 solid;
}

.calendar td.time {
  border-top: 1px #a88 solid;
  text-align: center;
  background-color: #fed;
  padding-top: 1px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 1px;
}

.calendar td.time .hour, .calendar td.time .minute, .calendar td.time .ampm {
  font-weight: bold;
  background-color: #fff;
  padding-top: 0px;
  padding-left: 4px;
  padding-right: 3px;
  padding-bottom: 0px;
  border-top: 1px #988 solid;
  border-right: 1px #988 solid;
  border-bottom: 1px #988 solid;
  border-left: 1px #988 solid;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  font-weight: bold;
  padding-top: 0px;
  padding-left: 3px;
  padding-right: 2px;
  padding-bottom: 0px;
}

.calendar td.time span.hilite {
  background-color: #866;
  color: #fff;
  border-top: #000;
  border-right: #000;
  border-bottom: #000;
  border-left: #000;
}

.calendar td.time span.active {
  background-color: #000;
  color: #0f0;
  border-top: #f00;
  border-right: #f00;
  border-bottom: #f00;
  border-left: #f00;
}

BODY {
}
