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

div.calendar { position: relative; }

.calendar, .calendar table {
  border: 1px solid #CCCCCC;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #f7f7f7; /* cor de fundo do corpo do calendario, aonde vao os numeros dos dias */
  font-family: Arial,verdana,sans-serif;
}

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  padding: 2px;          /* Make the buttons seem like they're pressing */
  color: #FFFF00; /* cor da fonte dos botoes avançar e retroceder mes e ano e da palavra Hoje */
}

.calendar thead .title { /* This holds the current "month, year"  - cor de fundo so de onde esta o nome do mes*/
  font-weight: bold;      /* Pressing it will take you to the current date */
  text-align: center;
  background: #0B0B3B;
  color: #00FF00; /* cor da fonte do nome do mes, ano de hoje - no cabeçalho */
  padding: 2px;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons cor de fundo de todo o cabeçalho*/
  background: #0B0B3B;
  font-weight: bold;
  color: #FFFFFF;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  background: #FFFF00; /* cor de fundo da barra aonde estão as iniciais dos dias da semana*/
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #556;
  padding: 2px;
  text-align: center;
  color: #0B0B3B; /* cor do fonte da barra aonde estão as iniciais dos dias da semana, de segunda a sexat (sabado e domingo nao*/
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #FF0000; /* cor do fonte da barra aonde estão as iniciais dos dias da semana, só sabado e domingo*/
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background: #1B486B;
  color: #FFF;
  border: 1px solid #1B486B;
  padding: 1px;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background: #77c;
  padding: 2px 0px 0px 2px;
}

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

.calendar tbody .day { /* Cells <TD> containing month days dates  cor da fonte dos dias (numericos) da semana*/
  width: 2em;
  color: #456;
  text-align: right;
  padding: 2px 4px 2px 2px;
}

.calendar tbody .hilite { /* Hovered cells <TD> */
  background: #EBEBEB;
  padding: 1px 3px 1px 1px;
  border: 1px solid #bbb;
}

.calendar tbody .active { /* Active (pressed) cells <TD> */
  background: #cde;
  padding: 2px 2px 0px 2px;
}

.calendar tbody .selected { /* Cell showing today date */
  font-weight: bold;
  border: 1px solid #000;
  padding: 1px 3px 1px 1px;
  background: #fff;
  color: #000;
}

.calendar tbody .weekend { /* Cells showing weekend days - cor da fonte dos dias (numericos) de finais de semana*/
  color: #a66;
}

.calendar tbody .today { /* Cell showing selected date - cor da fonte do dia atual (numerico) */
  font-weight: bold;
  color: #000;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.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) */
  text-align: center;
  background: #0A518E;
  color: #fff;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #0B0B3B /* cor de fundo da barra de rodape, onde está o status, de acordo com a movimentação do mouse */;
  color: #FFFF00; /* cor do fonte da barra acima */
  border-top: 1px solid #556;
  padding: 1px;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #aaf;
  border: 1px solid #04f;
  color: #ffffff;
  padding: 1px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #77c;
  padding: 2px 0px 0px 2px;
}

.combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border: 1px solid #655;
  background: #D9E6FB;
  color: #000;
  font-size: smaller;
}

.combo .label {
  width: 100%;
  text-align: center;
}

.combo .hilite {
  background: #D9E6FB;
}