/* Specify override colors for the jsCalendar */

.calendar, .calendar table {
  color: #ffffff; /*#000000; */
  background: #d8d9cb;
}

/* Header part -- contains navigation buttons and day names. */
.calendar .nav {
  background: #91946c;
}

.calendar thead .title { /* This holds the current "month, year" */
  background: #670001;
  color: #ffffff;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
  background: #91946c;
  color: #ffffff;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  background: #d8d9cb;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  color: #000000;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #aa6666;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background-color: #6c6c4a;
  color: #000000;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background-color: #999967;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  color: #445566;
}
.calendar tbody .day.othermonth {
  color: #bbbbbb;
}
.calendar tbody .day.othermonth.oweekend {
  color: #ffbbbb;
}

.calendar table .wn {
  background: #d8d9cb;
}

.calendar tbody .rowhilite td {
  background: #d8d9cb;
}

.calendar tbody .rowhilite td.wn {
  background: #d8d9cb;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
	color: #ffffff;
	background: #670001;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  background: #670001;
  color: #000000;
}

.calendar tbody tr.selected td { /* Cell showing today date */
  background: #670001;
  color: #000000;
}

.calendar tbody td.selected { /* Cell showing today date */
  background: #670001;
  color: #ffffff;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #aa6666;
}

.calendar tbody td.today { /* Cell showing selected date */
  color: #ffffff;
}

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

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  background: #555566;
  color: #ffffff;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #ffffff;
  color: #444455;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #6c6c4a;
  color: #000000;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #999967;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  background: #ddeeff;
  color: #000000;
}

.calendar .combo .hilite {
  background: #aaccff;
}

.calendar .combo .active {
  background: #d8d9cb;
}

.calendar td.time {
  background-color: #f4f0e8;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  background-color: #ffffff;
}


.calendar td.time span.hilite {
  border-color: #000000;
  background-color: #666677;
  color: #ffffff;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #000000;
  color: #00ff00;
}
