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

.calendar, .calendar table {
  border: solid 1px #000000;
  color: #fff;
  background-color: #195657;
}


.calendar .nav {
  background-color: #195657;
}

/* Header part -- contains navigation buttons and day names. */
.calendar thead .title { /* This holds the current "month, year" */
  border-color: #6EA7F9 #022B66 #03419B #3886F6;
  background-color: #195657;
  color: #ffffff;
  width: 156px;
  font-size: 12px;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
  background-color: #195657;
  color: #fff;
}

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

.calendar thead .name { /* Cells <TD> containing the day names */
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  background-color: #f7e88d;
  color: #50260c;
}

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

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background-color: #fff3b0;
  color: #000;

}

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

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

.calendar tbody .day { /* Cells <TD> containing month days dates */
  font-weight: bold;
  background-color: #fffbe2;
  color: #525040;
}
.calendar tbody .day.othermonth {
  color: #525040;
}
.calendar tbody .day.othermonth.oweekend {
  color: #525040;
}

.calendar table .wn {
  border-color: #000;
  background-color: #bdf;
}

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

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

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

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

.calendar tbody td.selected { /* Cell showing selected date */
  border-color: #50260c;
  background-color: #f8ea98;
  color: #50260c;
}

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

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

.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: #556;
  color: #fff;
}

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

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

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

/* Combo boxes (menus that display months/years for direct selection) */
.calendar .combo {
  border-color: #000;
  background-color: #f4eed2;
  color: #000000;
  font-size: 12px;
}

.calendar .combo .hilite {
  background-color: #ffffff;
   font-size: 12px;
}

.calendar .combo .active {
  border-color: #525040;
  background-color: #ffffff;
  font-size: 12px;
}

/* time */

.calendar tfoot tr.time td { border-color: #000; }
.calendar tfoot tr.time td.hour,
.calendar tfoot tr.time td.minute { border-color: #aac; }
.calendar tfoot tr.time td.hilite { background-color: #acf; }
.calendar tfoot tr.time td.active { background-color: #9be; }

/*
Reduce size to small
*/.calendar {
  border-width: 1px;
  font-size: 8px;
}

.calendar table {
  font-size: 10px;
}

.calendar tbody .day { width: 1.5em; }

.calendar td {
   font-size: 10px;
}
/*
Define elements to show start/end dates and the dates in between
*/

/*
* for start/end dates
*/
.edges {
   border : 1px solid;
   border-color: #adaa9c #fff #fff #adaa9c;
   background-color: #fffbee;
}

/*
* for dates between start and end dates
*/
.between {
   background-color: #dccdb9;
}

.calendar tbody .disabled { text-decoration: line-through; color:#000}

