@charset "ISO-8859-1";

/* The main calendar widget.  DIV containing a table. */
div.calendar {
    position: relative;
}

.calendar, .calendar table {
    border: 2px solid #96ABC4;
    color: #000;
    cursor: default;
    background: #F1F2F3;
}

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
    text-align: center;    /* They are the navigation buttons */
    padding: 2px;
	background: #D5D9DC;
    color: #00458E;
/*    font-size: 0.875em;*/
}

.calendar .nav {
	background: #D5D9DC;
    color: #00458E;
/*    font-size: 0.875em;*/
}

.calendar thead .title { /* This holds the current "month, year" */
    font-weight: bold;      /* Pressing it will take you to the current date */
/*    font-size: 0.875em;*/
    text-align: center;
    background: #506D91;
    color: #FFF;
    padding: 2px;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
	background: #00458E;
    color: #00458E;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
    background: #D7DFE8;
    color: #00458E;
}
.calendar thead .daynames td {
    border-top: 1px solid #96ABC4;
}

.calendar thead .name { /* Cells <TD> containing the day names */
    border-bottom: 1px dotted #96ABC4;
    padding: 2px;
    text-align: center;
    color: #00458E;
    font-size: 0.85em;
}

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

.calendar thead .hilite { /* How do the buttons in header appear when hover */
	background: #E3E6E8;
	color: #006ADA;
    padding: 2px;
}
.calendar thead .weekend.hilite {
  color: #800;
}

.calendar thead .active { /* Active (pressed) buttons in header */
    border: 1px solid #006ADA;
    padding: 1px;
}

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

.calendar tbody .day { /* Cells <TD> containing month days dates */
    width: 2em;
    background: #F1F2F3;
	color: #00458E;
    text-align: right;
    padding: 2px;
/*    font-size: 0.875em;*/
}
.calendar tbody .day.othermonth {
    font-size: 0.85em;
    color: #616161;
}
.calendar tbody .day.othermonth.oweekend {
    color: #FF6161;
}

.calendar table .wn {
    padding: 2px 2px 2px 1px;
    border-right: 1px dotted #96ABC4;
    background: #D7DFE8;
    color: #000;
    font-size: 0.85em;
}
.calendar thead .name.wn {
    border-bottom: 1px dotted #96ABC4;
    padding: 2px;
}

/*.calendar tbody td {
    font-size: 0.875em;
}*/

.calendar tbody .rowhilite td {
    background: #FAFBFC;
}
/*.calendar tbody .rowhilite td.wn {
  background: #eef;
}*/

.calendar tbody td.hilite { /* Hovered cells <TD> */
    padding: 2px;
    background: #FFF;
    color: #006ADA;
	/*border: 1px solid #006ADA;*/
}

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

.calendar tbody td.selected { /* Cell showing today date */
    font-weight: bold;
    border: 1px solid #96ABC4;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
    color: #600;
}

.calendar tbody td.today { /* Cell showing selected date */
  font-weight: bold;
  border: 1px dotted #96ABC4;
}

.calendar tbody .disabled {
    color: #616161;
}

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

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #FFF;
  color: #000;
  border-top: 1px solid #96ABC4;
  padding: 1px 5px;
  font-size: 0.85em;
  text-align: left;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
	background: #E3E6E8;
	color: #006ADA;
    padding: 2px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
    border: 1px solid #006ADA;
    padding: 1px;
}

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

.calendar .combo {
    position: absolute;
    display: none;
    top: 0px;
    left: 0px;
    width: 4em;
    cursor: default;
    border: 1px solid #00458E;
    background: #D5D9DC;
	color: #00458E;
    font-size: 0.85em;
    z-index: 100;
}

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

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

.calendar .combo .hilite {
	background: #E3E6E8;
	color: #006ADA;
}

.calendar .combo .active {
    font-weight: bold;
    background: #D5D9DC;
	color: #006ADA;
}

.calendar td.time {
    border-top: 1px solid #96ABC4;
    padding: 3px 0px;
    text-align: center;
    background: #F1F2F3;
    vertical-align: middle;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
    padding: 1px 3px;
    background: #85AECE;
    color: #000;
    border: 1px solid #BFBFBF;
}

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

.calendar td.time .colon {
  padding: 1px 2px;
}

.calendar td.time span.hilite {
    background: #CCDDEB;
}

.calendar td.time span.active {
    background: #CCDDEB;
    outline: 1px solid #85AECE;
}
