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

.calendar {
  position: relative;
  display: none;
  font-size: 11px;
  cursor: default;
  font-family: "Lucida Sans", "Lucida Grande", Lucida, Arial, sans-serif;
}

.calendar table {
	color: #333333;
	cursor: default;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	padding: 3px;
}

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

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  padding: 1px;
}

.calendar .nav {
}

.calendar thead .title {
	text-align: center;
}

.calendar thead .headrow {
	font-weight: bold;
	font-size: 12px;
}

.calendar thead .daynames {
	font-size: 9px;
	font-weight: bold;
	text-transform: uppercase;
}

.calendar thead .name {
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}

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

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

.calendar thead .active { /* Active (pressed) buttons in header */
  background-color: #CCCCCC;
}

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

.calendar tbody .day {
	width: 2em;
	text-align: center;
	padding: 3px 3px 3px 1px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
}

.calendar tbody .rowhilite td {
  background: #EDEDED;
}

.calendar tbody .rowhilite td.wn {
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
}

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

.calendar tbody td.selected {
	font-weight: bold;
	border: 1px solid #999999;
}

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

.calendar tbody td.today {
	font-weight: bold;
	color: #2C85E1;
}

.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> */
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
}

.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;
	font-size: 90%;
	z-index: 100;
	background-color: #FFFFFF;
	padding: 2px;
	border: 1px solid #CCCCCC;
}

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

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

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

.calendar .combo .hilite {
  background: #666666;
  color: #FFFFFF;
}

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

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  border: 1px solid #CCCCCC;
  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 {
  color: #fff;
}

.calendar td.time span.active {
}

