/*css*/
/* $Id: system.css.php,v 1.3 2009/02/17 23:39:53 morgan Exp $ */
@import url("layout-3d.css");

.calendar {
  border-color: #FFFFFF #333333 #333333 #FFFFFF;
  background-color: #FFFFFF;
  color: #333333;
}

.calendar table {
  border-color: #FFFFFF #333333 #333333 #FFFFFF;
  background-color: #FFFFFF;
  color: #333333;
}

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  border-color: #FFFFFF #ededed #ededed #FFFFFF;
  background-color: #ededed;
}

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

.calendar thead .title { /* This holds the current "month, year" */
  border-color: #333333;
  background-color: #009de9;
  color: #FFFFFF;
}

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

.calendar thead .daynames { /* Row <TR> containing the day names */
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-color: #ededed;
  background-color: #ededed;
  color: #333333;
}

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

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  border-color: #FFFFFF #ededed #ededed #FFFFFF;
}

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

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

.calendar tbody .day { /* Cells <TD> containing month days dates */
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  color: #ededed;
}
.calendar tbody .day.othermonth.oweekend {
  color: #009de9;
}

.calendar table .wn {
  border-color: #ededed;
  background-color: #ededed;
  color: #333333;
}

.calendar tbody .rowhilite td {
  background-color: #009de9;
  color: #FFFFFF;
}

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

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

.calendar tbody td.selected { /* Cell showing selected date */
  border-color: #ededed #FFFFFF #FFFFFF #ededed;
  background-color: #ededed;
  color: #333333;
}

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

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

.calendar tbody td.disabled { color: #ededed; }

.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) */
}

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

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  border-color: #FFFFFF #333333 #333333 #FFFFFF;
  background-color: #ededed;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  border-color: #333333 #FFFFFF #FFFFFF #333333;
}

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

.calendar .combo {
  border-color: #FFFFFF #ededed #ededed #FFFFFF;
  background-color: #FFFFFF;
  color: #333333;
}

.calendar .combo .active {
  border-color: #333333;
}

.calendar .combo .hilite {
  background-color: #009de9;
  color: #FFFFFF;
}

.calendar .month-left-border { /* Divider line between two monthes */
  border-left:1px solid #ededed;
}


/* time */

.calendar tfoot tr.time td { border-color: #ededed; background-color: #ededed; }
.calendar tfoot tr.time td.hour,
.calendar tfoot tr.time td.minute { border-color: #ededed; }
.calendar tfoot tr.time td.hilite { background-color: #009de9; color: #FFFFFF; }
.calendar tfoot tr.time td.active { background-color: #009de9; color: #FFFFFF; }
.calendar-time-scroller { border-color: #ededed; }

