@import url("layouts/layout-2d.css");

.calendar { border-color: #BFBDB1; }

.calendar table {
border:none;
  color: #666;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  background-color: #016A02;
  color: #fff;
}

.calendar .nav {
  background-color: #F5F5F3;
  color:#666;
  border-bottom:1px solid #BFBDB1;
}

.calendar thead .title { /* This holds the current "month, year" */
  background-color: #016A02;
  color: #fff;
  font:bold 14px "Trebuchet MS", Arial, Helvetica, sans-serif;
  padding-top:4px;
padding-bottom:3px !important;
padding-bottom:4px;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}

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

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

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background-color: #013602;
  color: #fff;
  border: none;
}

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

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

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

.calendar tbody .day { /* Cells <TD> containing month days dates */
  color: #564;
}
.calendar tbody .day.othermonth {
  color: #888;
}
.calendar tbody .day.othermonth.oweekend {
  color: #c88;
}

.calendar table .wn {
  border-color: #8a8;
  background-color: #dfb;
}

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

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

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background-color: #fff;
  border-color: #016A02;
}

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

.calendar tbody td.selected { /* Cell showing today date */
  border-color: #016A02;
  background-color: #016A02;
  color: #fff;
}

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

.calendar tbody td.today { color: #fff; }

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

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
}

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

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

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background-color: #fff;
  color: #016A02;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background-color: #afa;
  border-color: #084;
  color: #000;
}

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

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

.calendar .combo {
  border-color: #565;
  background-color: #FAB767;
  color: #fff;
}

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

.calendar .combo .active {
  border:none;
  background-color: #016A02;
}

/* time */

.calendar tfoot tr.time td { border-color: #8a8; }
.calendar tfoot tr.time td.hour,
.calendar tfoot tr.time td.minute { border-color: #aca; }
.calendar tfoot tr.time td.hilite { background-color: #af8; }
.calendar tfoot tr.time td.active { background-color: #7c7; }
