/* quelques accents pour utf8 : éêe */
/* The main calendar widget.  DIV containing a table. */

.calendar tbody td.agenda_orga {
  color: #005c94 !important;
  font-weight: bold; 
}

.calendar tbody td.agenda_post {
  color: #7dba42 !important;
  font-weight: bold; 
}

.calendar tbody td.agenda_trai {
  color: #801880 !important;
  font-weight: bold; 
}

.calendar tbody td.agenda_dive {
  color: #cf4f94 !important;
  font-weight: bold; 
}

div.calendar { 
    position: relative; 
    /*width: 135px; */
	width: 200px; 
	height: 170px; 
    margin-left: 2px; 
}

div.calendar table {
    margin-top: 25px;
	width: 100%; 
	height: 140px;
}

.calendar, .calendar table {
  font-size: 8px;
  color: #000;
  cursor: default;
  background-color: transparent;
  font-family: tahoma,verdana,sans-serif;
  width : 150px;
}

/* 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 */
  font-size: 9px;
}

.calendar .nav {
  background-color: transparent;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;      /* Pressing it will take you to the current date */
  text-align: center;
  background-color: transparent;
  color: #000;
  padding: 2px;
  display: none; 
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
  background-color: transparent;
  color: #666;
  text-transform:uppercase;
  font-weight: bold; 
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  font-weight: bold; 
}

.calendar thead .name { /* Cells <TD> containing the day names */
  text-transform: uppercase; 
  font-size: 8px;
  padding: 0px;
  text-align: center;
  color: #000;
  font-weight: bold; 
}

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

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background-color: #BCD;
  color: #000;
  border: 0px solid #04F;
  padding: 0px;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background-color: #5A9BC4;
  padding: 0px;
}

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

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  color: #456;
  text-align: center;
  padding: 2px 1px 2px 1px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #BBB;
}
.calendar tbody .day.othermonth.oweekend {
  color: #FBB;
}

.calendar table .wn {
  padding: 1px;
  border-right: 1px solid #000;
  background: #BDF;
}

.calendar tbody .rowhilite td {
}

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

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background: #BCD;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  background: #CDE;                                                            
  padding: 1px; 
}

.calendar tbody td.selected { /* Cell showing today date */
  background: #5A9BC4;
  color: #000;
}

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

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

.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) */
  text-align: center;
  background: #556;
  color: #FFF;
  display: none;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background-color: transparent;
  color: #445;
  border-top: 1px solid #556;
  padding: 1px;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #216C85;
  border: 1px solid #04F;
  color: #000;
  padding: 1px;
}

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

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

.calendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border: 1px solid #655;
  background: #DEF;
  color: #000;
  font-size: 90%;
  z-index: 100;
}

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

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

.calendar .combo .hilite {
  background: #ACF;
}

.calendar .combo .active {
  border-top: 1px solid #46A;
  border-bottom: 1px solid #46A;
  background: #EEF;
  font-weight: bold;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #F4F0E8;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 1px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: transparent;
}

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

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

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #667;
  color: #FFF;
}

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

