/* The main calendar widget.  DIV containing a table. */

.calendar {
  position: relative;
  display: none;
  border: 2px solid #A8D3FF;
  font-size: 11px;
  color: #0067CE;
  cursor: default;
  background: #e7e7de;
  font-family: tahoma,verdana,sans-serif;
  width: 300px;
}

.calendar table {
  border: 2px solid #A8D3FF;
  font-size: 11px;
  color: #0067CE;
  width: 300px;
  cursor: default;
  background: #e7e7de;
  font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  border: solid #C1E0FF 1px;
}



/*.calendar .nav {
  background: transparent url(menuarrow.gif) no-repeat 100% 100%;
}  */

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  border: 1px solid #A8D3FF;
  /*background: #205891 ;   */
  background: #205891 ;
  color: #ffffff;
  text-align: center;
}

.calendar thead .headrow td { /* Row <TR> containing navigation buttons */
  border: solid #A8D3FF 1px;
}

.calendar thead .daynames td { /* Row <TR> containing the day names */
width: 40px;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border: solid #A8D3FF 1px;
  text-align: center;
  background: #205891 ;
  color:#FFFFFF;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #B7DBFF;
  font-weight:bold;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background-color: #E8F3FF;
  border: solid #A8D3FF 1px;
  text-align: center;
  color:#004F9D;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  border:none;
  background-color: #ECF3FF;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  text-align: right;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
  border: solid #A8D3FF 1px;
  color: #ffffff;
  background: #205891;
}

.calendar tbody .rowhilite td {
  background: #dadad0;
}

.calendar tbody .rowhilite td.wn {
  background: #dadad0;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  background: #999999;
  color: #fff;
  font-weight: bold;
}

.calendar tbody td {
  border: solid #A8D3FF 1px;
  height: 25px;
  color:#000000;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  border: 1px solid;
  border-color: #A8D3FF;
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  border: 1px solid;
  border-color: #A8D3FF;
  background: #ECF3FF;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #89161A;
}

.calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #141F6B;
}

.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) */
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #205891;
  border: solid #A8D3FF 1px;
  color: #ffffff;
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  border: solid #A8D3FF 1px;
  background: #ECF3FF;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  border: solid #A8D3FF 1px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar {
  z-index: 100;
}


.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  border-top: 1px solid #A8D3FF;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  background: #ECF3FF;
  font-size: 90%;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  background: #ECF3FF;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar .combo .hilite {
  background: #4887D3;
  color: #205891;
}

.calendar td.time {
  border-top: 1px solid #000;
  text-align: center;
  background-color: #e8f0f4;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  border: 1px solid #889;
  font-weight: bold;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #667;
  color: #fff;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #000;
  color: #0f0;
}
