@import url("../layouts/layout-2d-custom.css");

.calendar { 
	border-color: #f00; 
	border: none;
}

.calendar table {
  border-color: #13477e;
  color: #000;
  background-color: #13477e;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  background-color: #13477e;
  color: #fff;
}

.calendar .nav {
  background-color: #13477e;
}

.calendar thead .title { /* This holds the current "month, year" */
  background-color: #13477e;
  color: #fff;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
  background-color: #13477e;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  color: #6c75a6;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #6c75a6;
}







.calendar thead .hilite { /* How do the buttons in header appear when hover */
  /*border-color: #4c669a;*/
}

.calendar thead .active { /* Active (pressed) buttons in header */
  /*background-color: #fff;*/
}

.calendar thead .month-previous { 
  background: url("monthPrevious.gif") no-repeat;
  background-position: center center;
}
.calendar thead .month-next { 
    background: url("monthNext.gif") no-repeat;
    background-position: center center;
}


.calendar thead .daynames { /* Row <TR> containing the day names */
  background-color: #fff;
}


/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates - REGULAR CELL */
  background-color: #fff;
  color: #000;
}
.calendar tbody .day.othermonth {
  color: #0d64be;
}
.calendar tbody .day.othermonth.oweekend {
  color: #0d64be;
}

.calendar table .wn {
  border-color: #f00;
  background-color: #f00;
}



.calendar tbody .rowhilite td {
  /*background-color: #f00;*/
}

.calendar tbody .rowhilite td.wn {
  background-color: #f00;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background-color: #d6e4fc;
  color: #13477e;
  border-color: #4c669a;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  background-color: #e6f4fc;
}

.calendar tbody td.selected { /* Cell showing selected date */
  border-color: #00f;
  background-color: #c9ddf4;
  color: #000;
}

.calendar tbody td.edges { /* Cell showing edge date */
  border-color: #006;
  background-color: #c9ddf4;
  color: #000;
}


/* in 2+ horizontal calendar, separate the months */
.calendar thead .month-right-border { 
  border-right-color: #d7e5fc;
}
.calendar tbody .month-right-border { 
  border-right-color: #d7e5fc;
}



.calendar tbody td.between {
	background-color: #d6e4fc;
}



.calendar tbody td.weekend { /* Cells showing weekend days */
  /*color: #900;*/
}

.calendar tbody td.today { color: #0d64be; }

.calendar tbody .disabled { 
	color:#a6a6a6;
}

.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: #f00;
  color: #f00;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background-color: #fff;
  border-top: 1px solid #d7e5fc;
  color: #009;
  font-weight: normal;
  text-decoration: underline;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  border-color: #556;
  background-color: #def;
  color: #000;
}

.calendar .combo .hilite {
  background-color: #8af;
}

.calendar .combo .active {
  border-color: #46a;
  background-color: #eef;
}

/* time */

.calendar tfoot tr.time td { border-color: #88a; }
.calendar tfoot tr.time td.hour,
.calendar tfoot tr.time td.minute { border-color: #aac; }
.calendar tfoot tr.time td.hilite { background-color: #8af; }
.calendar tfoot tr.time td.active { background-color: #77c; }
