﻿/* The main calendar widget.  DIV containing a table. */
.calendar {
  z-index:1;
  /*position: relative;*/
  width:182px;
  display: none;
  font-size: 9px;
  color: Black;
  cursor: default;
  font-family: verdana,tahoma,sans-serif;
  background: White;
}

.calendar table {
  font-size: 9px;
  width:182px;
  color: Black;
  cursor: default;
  font-family: verdana,tahoma,sans-serif;
  background: #EEEFEA;
  border: #003465 solid 1px;
}

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  font-size:9px;
  font-family: verdana,tahoma,sans-serif;
  padding:0px;
  width:26px;
  height:19px;
  text-align: center;
  font-weight: normal;
  background: #FFFFFF;
  color: #1660AB;
  text-decoration:underline;
  cursor: pointer;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-size:12px;
  height:19px;
  padding: 1px;
  font-weight:bold ;
  text-align: center;
  color: white;
  background-color: #6285AB;
  /*background-image:URL(../images/calendrier/fond_calendrier.gif);*/
}

.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;
  padding-left:3px;
  font-size:11px;
  width:26px;
  font-weight:bold;
  color: Black;
  height:19px;
  background-image:URL(../images/calendrier/calendrier_jour.gif);
  
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: Black;
  width:26px;
}

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

.calendar thead .active { /* Active (pressed) buttons in header */
  color: #0000CC;
}

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

.calendar tbody .day { /* Cells <TD> containing month days dates */
  font-family: Verdana,tahoma,sans-serif;
  letter-spacing:-1px;
  color: Black;
  padding-right:6px;
  padding-top:0px;
  width: 26px;
  height: 19px;
  font-size:10px;
  text-align: right;
}

.calendar table .wn {
  font-size:10px;
  width:26px;
}

.calendar tbody .rowhilite td {
}

.calendar tbody .rowhilite td.wn {
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  color: #00F;
}

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

.calendar tbody td.selected { /* Cell showing selected date */
  color: #0A1D37;
  font-weight:bold;
}

.calendar tbody td.have_event { /* Cell having event MARCHE PAS */
}


.calendar tbody td.weekend { /* Cells showing weekend days */
  width:26px;
}

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

.calendar tbody .disabled { color: #09F ; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  background: #FFFFFF;
  visibility: hidden;
  width:26px;
}

.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 { /* Tooltip (status bar) cell <TD> */
  display: none;
  color: #009;
  padding-top:3px;
  text-align: center;
  font-size: 11px;
  height:16px
}

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

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

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

.combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  cursor: default;
  border: 1px solid #09F;
  background: #09F;
  font-family: Tahoma,Arial,Verdana,Helvetica;
  font-size: 11px;
  padding: 1px;
}

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

.combo .active {
  background: #0CF;
  border: 1px solid #000;
  padding: 0px;
}

.combo .hilite {
  background: #0FF;
  color: #09C;
}