/* The main calendar widget.  DIV containing a table. */

.calendar {
  position: relative;
  display: none;
  border: 1px solid #ccc;
  font-size: 11px;
  color: #333;
  cursor: default;
  background: #fff;
  font-family: tahoma,verdana,sans-serif;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);  
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  z-index: 5;
  padding: 7px;
}

.calendar table {
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #fff;
  font-family: tahoma,verdana,sans-serif;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  width: 231px;
  height: 264px;
}

.calendar td {
    width: 25px;
    line-height: 25px;
    padding: 4px;
    vertical-align: middle;
}

.calendar .selected,
.calendar .hilite {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}
/* Header part -- contains navigation buttons and day names. */

.calendar .button { 
  text-align: center;
  padding: 4px;
  font-size: 14px;
}

.calendar .nav {
  background: transparent url(menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title { 
  font-weight: bold;
  padding: 1px;
  text-align: center;
  font-size: 14px;
}

.calendar thead .headrow { 
}

.calendar thead .daynames {
    font-weight: bold; 
}

.calendar thead .name {
  padding: 4px;
  text-align: center;
}

.calendar thead .weekend { 
  color: #f00;
}

.calendar thead .hilite { 
    background-color: #eeeeee;
}

.calendar thead .active { 
  background-color: #f5f5f5;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { 
/*  width: 20px;
  height: 20px;*/
  text-align: center;
  padding: 4px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
    color: #aaa;
}

.calendar tbody .rowhilite td {
}

.calendar tbody .rowhilite td.wn {
}

.calendar tbody td.hilite { 
  background-color: #eeeeee;
}

.calendar tbody td.active { 
}

.calendar tbody td.selected { 
  font-weight: bold;
  background: #444444;
  color: #fff;
}

.calendar tbody td.weekend { 
  color: #f00;
}

.calendar tbody td.weekend.selected {
    color: #fff;
}
.calendar tbody td.today { 
  font-weight: bold;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { 
  visibility: hidden;
}

.calendar tbody .emptyrow { 
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { 
}

.calendar tfoot .ttip { 
  padding: 1px;
  text-align: center;
  display: none;
}

.calendar tfoot .hilite { 
  padding: 1px;
}

.calendar tfoot .active { 
  padding: 2px 0px 0px 2px;
}

/* 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 #eee;
  background: #f5f5f5;
  /*font-size: 90%;*/
  padding: 1px;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  background: #86ad42;
  color: #fff;
}

.calendar .combo .hilite {
  background: #eeeeee;
}

.calendar td.time {
  border-top: 1px solid #ccc;
  padding: 1px 0px;
  text-align: center;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
}

.calendar td.time span.hilite {
  background-color: #eeeeee;
}

.calendar td.time span.active {
/*
  border-color: #f00;
  background-color: #000;
  color: #0f0;
  */
}
