span.text-help
{
    border-bottom: 1px dotted #000000;
    padding: 0px;
    margin-top: -10px;
    cursor: default
}
div.text-help {
    text-align:left;
    position: absolute;
    display: none;
    z-index: 200;
    left: 0;
    top: 0px;
    background: #FFFFFF;
    border: 1px #CCCCCC solid;
    -moz-box-shadow: 2px 2px 5px 0 #CCCCCC;
    -webkit-box-shadow: 2px 2px 5px 0 #CCCCCC;
    box-shadow: 2px 2px 5px 0 #CCCCCC;
    overflow: auto;
    font-weight: normal;
    margin: -1px 0 0 0;
}
div.text-help ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}
div.text-help ul li {
    padding: 4px 6px 4px 6px;
    border-top:1px #FFFFFF solid;
    border-right:1px #CCCCCC solid;
    border-bottom: 1px #CCCCCC solid;
    border-left:1px #FFFFFF solid;
    float:left;
    padding: 4px;
    width: 64px;
}
div.text-help ul li:hover {
    background: #FFFFFF;
}
.help-options {
    background: #F1F1F1;
}
.help-content {
    background: #FFFFFF;
    color: #000000;
    padding: 8px;
    max-width: 256px;
    min-width: 58px;
}

/* The main calendar widget.  DIV containing a table. */


div.calendar { position: relative; }

.calendar, .calendar table {
  font-size: 13px;
  border: 1px solid #CCCCCC;
  color: #000;
  cursor: default;
  background: #ffffff; 
  font-family: 'Arial',tahoma,verdana,sans-serif;
    -moz-box-shadow: 2px 2px 5px 0 #CCCCCC;
    -webkit-box-shadow: 2px 2px 5px 0 #CCCCCC;
    box-shadow: 2px 2px 5px 0 #CCCCCC;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  color: #000;
  text-align: center;    /* They are the navigation buttons */
  padding: 4px          /* Make the buttons seem like they're pressing */
}

.calendar thead .title { /* This holds the current "month, year" */
      /* Pressing it will take you to the current date */
  font-weight: bold;
  text-align: center;
  background: #fff;
  color: #000;
  padding: 2px
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
  background: #FFFFFF;
  color: #fff
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  background: #ECF1DA
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #CCCCCC;
  padding: 2px;
  text-align: center;
  color: #000
}

.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: #ECF1DA;
  COLOR: #313131;
  border: 1px solid #CCCCCC;
  padding: 1px
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background: #CCCCCC;
  padding: 2px 0px 0px 2px;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  COLOR: #313131;
  text-align: right;
  padding: 2px 4px 2px 2px
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #CCCCCC;
  background: #ECF1DA
}

.calendar tbody .rowhilite td {
  background: #ECF1DA
}

.calendar tbody .rowhilite td.wn { /* wk column highlight */
  background: #ffffff
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background: #ffffff;
  padding: 1px 3px 1px 1px;
  border: 1px solid #CCCCCC
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  background: #ECF1DA;
  padding: 2px 2px 0px 2px
}

.calendar tbody td.selected { /* Cell showing today date */
  border: 1px solid #CCCCCC;
  padding: 1px 3px 1px 1px;
  background: #fff;
  font-weight: bold;
  color: #000
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #a66
}

.calendar tbody td.today { /* Cell showing selected date */
  font-weight: bold;
  color: #00f
}

.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: #556;
  color: #fff
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #fff;
  color: #445;
  border-top: 1px solid #CCCCCC;
  padding: 1px
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #d8d7d7;
  border: 1px solid #CCCCCC;
  color: #000;
  padding: 1px
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #77c;
  padding: 2px 0px 0px 2px
}


