/* The main calendar widget.  DIV containing a table. */

body .calendar {      
      border:none; background: none; font-family: "Open Sans", Verdana, Arial, Courier, sans-serif;
      z-index: 500; 
}

body .calendar table {
    background: white; border:1px solid #159600; border-radius: 5px; -webkit-box-shadow: 0px 0px 4px rgba(0, 102, 5, 1);
    -moz-box-shadow:    0px 0px 4px rgba(57, 99, 255, 1); box-shadow:         0px 0px 4px rgba(0, 102, 5, 1);  
}

/* Header part -- contains navigation buttons and day names. */

body .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center; padding: 1px; border: none;
  background-color: #008602;
      color: white;
      padding:5px;
}

body .calendar thead .title { /* This holds the current "month, year" */
  border: none;
  background: #00730F;
  color: #fff;
  text-align: center;
}

body .calendar thead .name { /* Cells <TD> containing the day names */
  border-top: 1px solid #249000;
  border-bottom: 1px solid #249000;
  background: #D2EDCF;
}

body .calendar thead .weekend { /* How a weekend day name shows in header */
  color: #f00;
}

body .calendar thead .hilite { /* How do the buttons in header appear when hover */
  border: none;
  background-color: #119BEE;
      color: white;
}

body .calendar thead .active { /* Active (pressed) buttons in header */
  padding: 2px 0px 0px 2px;
  border:none;
  background-color: #c4c0b8;
  color: black;
}

/* The body part -- contains all the days in month. */

body .calendar tbody .day { /* Cells <TD> containing month days dates */
  padding: 3px;
}
    
body .calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}

body .calendar tbody .day.disabled 
{
    color: rgb(180, 180, 180);
}

body .calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

body .calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
  background: #f4f0e8;
}

body .calendar tbody .rowhilite td {
  background: #e4e0d8;
}

body .calendar tbody .rowhilite td.wn {
  background: #d4d0c8;
}

body .calendar tbody td.hilite { /* Hovered cells <TD> */
  padding: 3px;
  border: none;
  background-color: #E3F5FD;
}

body .calendar tbody td.active { /* Active (pressed) cells <TD> */
  padding: 3px;
      border: none;
}

body .calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  color: white !important;
  border:none;
  padding: 2px 2px 0px 2px;
  background: #348B02;
}

body .calendar tbody td.weekend { /* Cells showing weekend days */
  color: #f00;
}

body .calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #00f;
}

body .calendar tbody .disabled { color: #999; }

body .calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

body .calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

body .calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
}

body .calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #f4f0e8;
  padding: 1px;
  border:none;
  border-top: 1px solid #EEEEEE;
  background: none;
  color: black;
  text-align: center;
      padding:5px;
}
