/* The main calendar widget.  DIV containing a table. */

.calendar
{
	border-bottom: #000099 1px solid;
	position: relative;
	border-left: #000099 1px solid;
	width: 200px;
	display: none;
	font-family: tahoma,verdana,sans-serif;
	background: #fff;
	color: #003399;
	font-size: 12px;
	border-top: #000099 1px solid;
	cursor: default;
	border-right: #000099 1px solid;
}

.calendar table
{
	border-bottom: #000099 1px solid;
	border-left: #000099 1px solid;
	width: 200px;
	font-family: tahoma,verdana,sans-serif;
	background: #fff;
	color: #003399;
	font-size: 12px;
	border-top: #000099 1px solid;
	cursor: default;
	border-right: #000099 1px solid;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button
{
	border-bottom: #0066ff 1px solid;
	text-align: center;
	border-left: #0066ff 1px solid;
	border-top: #0066ff 1px solid;
	border-right: #0066ff 1px solid;
}



.calendar .nav {
  background: transparent url(menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title
{
	border-bottom: #000 1px solid;
	text-align: center;
	border-left: #000 1px solid;
	background: #3333ff;
	color: #fff;
	border-top: #000 1px solid;
	font-weight: bold;
	border-right: #000 1px solid;
}

.calendar thead .headrow td { /* Row <TR> containing navigation buttons */
  border: solid #0066ff 1px;
}

.calendar thead .daynames td { /* Row <TR> containing the day names */
width: 40px;
}

.calendar thead .name
{
	border-bottom: #0066ff 1px solid;
	text-align: center;
	border-left: #0066ff 1px solid;
	background: powderblue;
	color: #3366cc;
	border-top: #0066ff 1px solid;
	border-right: #0066ff 1px solid;
}

.calendar thead .weekend
{
	color: #cc0066;
}

.calendar thead .hilite
{
	border-bottom: #0066ff 1px solid;
	text-align: center;
	border-left: #0066ff 1px solid;
	background-color: powderblue;
	color: #3366cc;
	border-top: #0066ff 1px solid;
	border-right: #0066ff 1px solid;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  border:none;
  background-color: powderblue;
}

/* 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 #0066ff 1px;
  background: powderblue;
}

.calendar tbody .rowhilite td {
  background: powderblue;
}

.calendar tbody .rowhilite td.wn {
  background: powderblue;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  border: solid #999933 1px;
}

.calendar tbody td {
  border: solid #fff 1px;
  height: 25px;
  color:#3366cc;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  border: 1px solid;
  border-color: #999933;
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  border: 1px solid;
  border-color: #999933;
  background: powderblue;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #cc0066;
}

.calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #3333ff;
}

.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: #3333ff;
  border: solid #0066ff 1px;
  color: #fff;
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  border: solid #0066ff 1px;
  background: powderblue;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  border: solid #0066ff 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 #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  background: powderblue;
  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: powderblue;
  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: powderblue;
}

.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;
}
