
.calendar {
	position: relative;
	display: none;
	cursor: default;
	background: #fff;
	color: white;
	font-family: "Univers LT W01 45 Light";
}

.calendar table td{
	border: 1px solid;
	border-color: #fff;
	cursor: default;
	color: #000;
}

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  border-color: grey;
  background: #B3BDC5;
  color: white;
}

.calendar .nav {
  background: #b3bdc5 url(menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  background: #5B6670;
  color: white;
  text-align: center;
}

.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;
  background: #eeeff0;
  font-weight: bold;
}

.calendar thead .hilite { How do the buttons in header appear when hover
}

.calendar thead .active { /* Active (pressed) buttons in header */
}

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

.calendar tbody .day { /* Cells <TD> containing month days dates */
	width: 30px;
	text-align: center;
}
.calendar tbody .day.othermonth {
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
  background: #eeeff0;
}

.calendar tbody .rowhilite td {
  background: #5B6670;
  color: white;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
	color: #fff !important;
	background: #B3BDC5;
}

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

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  color: white !important;
}

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

.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) */
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #b3bdc5;
  color: white;
  text-align: center;
  width: 200px;
}

/* .calendar tfoot .hilite { Hover style for buttons in footer
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  background: #e4e0d8;
}
 */
.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

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

.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  border: 1px solid;
  border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
  background: Menu;
  color: MenuText;
  z-index: 100;
}

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

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

.calendar .combo .active {
  border: 1px solid #000;
}

/* .calendar .combo .hilite {
  background: Highlight;
  color: HighlightText;
}
 */
.calendar td.time {
  border-top: 1px solid ButtonShadow;
  text-align: center;
  background-color: #b3bdc5;
}

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

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

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

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

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