
.special { background-color: #738031; color: #fff; cursor: pointer }

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

.calendar { border-left-style: none; border-bottom-style: none; border-right-style: none; border-top-style: none; background-color: #dfe2d5; position: fixed; display: none; font-size: 10px; cursor: default; font-family: tahoma, verdana, sans-seri; margin-bottom: 5px; }

html>body .calendar { border-left-style: none; border-bottom-style: none; border-right-style: none; border-top-style: none; position: relative; display: none; font-size: 10px; cursor: default; font-family: tahoma, verdana, sans-seri; background-color: #dfe2d5; margin-bottom: 5px; }

.calendar table { font-size: 10px; cursor: default; font-family: tahoma, verdana, sans-seri; width: 100%; border-width: 0; }

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center; padding: 1px; border-color: #d7d7d7 transparent transparent; border-style: solid none none; border-width: 1px; }

.calendar .nav { background-color: #ffffed; padding-right: 2px; padding-left: 2px; border-top: 1px solid #d7d7d7; border-right-style: none; border-bottom-style: none; border-left-style: none; }

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold; padding: 3px 29px 3px 1px; text-align: center; border-top: 1px solid #d7d7d7; border-right-style: none; border-bottom-style: none; border-left-style: none; }

.calendar thead .headrow { background-color: #fff7d7; padding: 1px 2px 1px 1px; border-top: 1px solid #d7d7d7; /* Row <TR> containing navigation buttons */
}

.calendar thead .daynames { font-weight: bold; margin-bottom: 5px; padding-top: 4px; padding-bottom: 4px; border: solid 1px transparent; /* Row <TR> containing the day names */
}

.calendar thead .name { /* Cells <TD> containing the day names */
  padding: 2px;
  text-align: center;
}

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

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  color: #fff; background-color: #1071a0; padding: 1px 2px 1px 1px; border-style: none; border-width: 0; }

.calendar thead .active { /* Active (pressed) buttons in header */
  border-width: 1px;
  padding: 1px 2px 1px 1px;
  b
}

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

.calendar tbody .day { /* Cells <TD> containing month days dates */                                             
  padding-left: 1px;                                                                                          
  padding-bottom: 1px;                                                                                          
  padding-right: 2px;                                                                                          
  padding-top: 2px;                                                                                          
  width: 2em; text-align: center; border-style: none; border-width: 1px; }
  
html>body .calendar tbody .day { /* Cells <TD> containing month days dates */                                             
  padding-left: 1px;                                                                                          
  padding-bottom: 1px;                                                                                          
  padding-right: 2px;                                                                                          
  padding-top: 2px;                                                                                          
  width: 2em; text-align: center; }
    
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
  padding: 1px 2px 1px 1px;
}

.calendar tbody .rowhilite td {
  }

.calendar tbody td.hilite { /* Hovered cells <TD> */
  color: white;                         
  background-color: #45501a;                         
  padding: 1px 2px 1px 1px; border-style: none; border-width: 1px; cursor: pointer }

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

.calendar tbody td.selected { /* Cell showing selected date */
  color: #3b3c3c; font-weight: bold; background-color: #f2f6f7; padding: 1px 2px 1px 1px; border-style: none; border-width: 1px; }

.calendar tbody td.weekend { /* Cells showing weekend days */
  
}

.calendar tbody td.today { /* Cell showing today date */                              
  font-weight: bold; padding: 1px 2px 1px 1px; }

.calendar tbody td.disabled {  }

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

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  padding: 1px; border: solid 1px; text-align: center; }

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  padding: 1px; background: #fffaeb; border-color: #fff #000 #000 #fff; border-style: solid; border-width: 1px; }

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  padding: 2px 0 0 2px;
  b;border-color: #000 #fff #fff #000; border-style: solid; border-width: 1px; }

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

.calendar .combo {
  background-color: #fcf8c8;
  position: absolute;
  display: none;
  width: 4em;
  top: 0;
  left: 0;
  cursor: default;
  font-size: 90%;
  padding: 0px;
  z-index: 999;
}

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

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

.calendar .combo .active {
  background-color: #fff46c;
  padding: 0px;
}

.calendar .combo .hilite {
  
	color: #131313;
  
	background-color: #fff46c;
  
}

.calendar td.time {
  padding: 1px 0;
  text-align: center;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0 3px 0 4px;
  border: solid 1px #889;
  font-weight: bold;
}

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

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

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

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