#calendar {
	position: relative; padding-left: 20px;
}

.calendar-data {
	position: absolute;
	top: 150px;	
}

.calendar-data div {
	display: none;	
}



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

.calendar {
  position: relative;
  display: none;
  font-size: 11px;
  cursor: default;
  font-family: arial,sans-serif;
}

.calendar table {
  font-size: 11px;
  cursor: default;
  font-family: arial,sans-serif;
}

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  font-weight: bold;
  color: green;
  cursor: pointer;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.calendar .button.hilite { /* Hovered cells <TD> */
  background: #dddddd;
}

.calendar .headrow {
	display: none;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  padding: 1px;
  color: #58585A;
  text-align: center;
  padding: 4px;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  padding: 2px;
  text-align: center;
  background: url(../img/calendar_day.gif) top repeat-x;
  color: #58585A;
  font-weight: bold;
  height: 20px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

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


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

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 20px;
  text-align: center;
  padding: 3px;
  background: url(../img/calendar_day.gif) top repeat-x;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  margin: 0px;
  height: 14px;
}

.calendar tbody .content {
  color: #ff0000;
  font-weight: bold;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  color: #cccccc;
  background: none;
}

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

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

.calendar tbody td.today { /* Cell showing today date */ 
}

.calendar tbody td.disabled { color: GrayText; }

.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;
}

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

.calendar .combo {
  display: none;
}


