/* The main calendar widget.  DIV containing a table. */

.calendar {
  position: relative;
  display: none;
  color: #000;
  cursor: default;
  font-family: Arial,Tahoma;
}

.calendar table {width:100%; height:266px;}

.calendar table tbody {}

.daysrow {background:#f5f5f5;}

.calendar table tr td {padding:5px;}
.calendar table tbody tr td {padding:5px; background:#f5f5f5;}

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  text-transform:uppercase;
  border-radius:10px 10px 0px 0px;
  background: #48b;
  color: #fff;
  text-align: center;
}

.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 */
  text-align: center;
  font-size:11px;
  background: #ddd;
}

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

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

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

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

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 42px !important;
  text-align: right;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
  background: #e8f4f0;
  display:none
}

.calendar tbody .rowhilite td {
  background: #fff;
}

.calendar tbody .rowhilite td.wn {
  background: #c8d4d0;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  background: #fff;
}

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

.calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #059;
}

.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) */
  display: none;
}

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

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
}

.calendar tfoot .ttip, .calendar tfoot .ttip * { /* Tooltip (status bar) cell <TD> */
  background: #788084;
  color: #fff;
  font-size:12px;
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #fff;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
}

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

.calendar .combo {
  position: absolute;
  display: none;
  width: 56px;
  top: 0px;
  left: 0px;
  cursor: default;
  background: #fff;
  font-size: 90%;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  background: #eee;
}

.calendar .combo .hilite {
  background: #48b;
  color: #fff;
}

.calendar td.time {
  text-align: center;
  background-color: #e8f0f4;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  font-weight: bold;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  font-weight: bold;
}

.calendar td.time span.hilite {
  background-color: #667;
  color: #fff;
}

.calendar td.time span.active {
  background-color: #000;
  color: #0f0;
}

.evento {background:#7C971A !important; color:#fff !important; cursor:pointer;}
.evento_titulo {position:absolute; background:#eee !important; border-radius:0px 0px 10px 10px; width:285px; height:30px; color:#7C971A !important; padding:4px; bottom:-39px; left:0px; font-weight:bold; font-size:10px !important; text-transform:uppercase;}
.evento_titulo_padrao {color:#999 !important;}
.evento a {border:0px; color:#fff;}
.evento a:hover {border:0px;}