
/*---- FONT SCHEME ----*/

.calendar, .calendar table { font-family: sans-serif; }



/*---- COLOR SCHEME ----*/

.calendar, .calendar table { border: 1px solid #363491; }
.calendar, .calendar table { color: #000; }
.calendar, .calendar table { background: #DFF1FF; }

.calendar table tr{
	line-height: 1.6em;
}

.calendar .button { color: #fff; }
.calendar .button { background: #669acc;background: #2D3944; }
.calendar .nav { background-color: #669acc; background: #2D3944; }

.calendar thead .title { background: #669acc;background: #2D3944; }
.calendar thead .title { color: #fff; }
.calendar thead .name { border-bottom: 1px solid #444; }
.calendar thead .name { color: #000; }
.calendar thead .weekend { color: #666; }
.calendar thead .hilite { color: #fff; }
.calendar thead .hilite { background-color: #2D3944; }
.calendar thead .hilite { border: 1px solid #444; }
.calendar thead .active { background-color: #777;background: #363491;}
.calendar thead .daynames { background: #fff; font-weight: 800;}

.calendar tbody .day { color: #666; }
.calendar tbody .day.othermonth { color: #bbb; }
.calendar tbody .day.othermonth.oweekend { color: #fff; }
.calendar table .wn { background: #ddd;background: #5F707F; color: #fff; font-weight: 800;}
.calendar table .wn { border-right: 1px solid #444; }
.calendar tbody .rowhilite td { background: #fff; }
.calendar tbody .rowhilite td.wn { background: #2D3944; }
.calendar tbody td.hilite { background: #eee;background: #AFDDFF; color:#000; }
.calendar tbody td.hilite {/* border: 1px solid #bbb; */}
.calendar tbody td.selected { /*border: 1px solid #000;*/ }
.calendar tbody td.selected { background: #fff;}
.calendar tbody td.selected { color: #BF3B3B; }
.calendar tbody td.weekend { color: #38146F; }
.calendar tbody td.today { color: #000; }
.calendar tbody .disabled { color: #999; }

.calendar tfoot .footrow { background: #555; }
.calendar tfoot .footrow { color: #fff; }
.calendar tfoot .ttip { background: #222; }
.calendar tfoot .ttip { color: #eee; }
.calendar tfoot .hilite { background: #aaa; }
.calendar tfoot .hilite { border: 1px solid #444; }
.calendar tfoot .hilite { color: #000; }
.calendar tfoot .active { background: #777; }

.calendar .combo { border: 1px solid #444; }
.calendar .combo { background: #eee; }
.calendar .combo { color: #000; }
.calendar .combo .hilite { background: #aaa; }
.calendar .combo .active { border-top: 1px solid #444; }
.calendar .combo .active { border-bottom: 1px solid #444; }
.calendar .combo .active { background: #eee; }
.calendar td.time { border-top: 1px solid #444; }
.calendar td.time { background-color: #ddd; }
.calendar td.time .hour, .calendar td.time .minute, .calendar td.time .ampm { border: 1px solid #444; }
.calendar td.time .hour, .calendar td.time .minute, .calendar td.time .ampm { background-color: #fff; }
.calendar td.time span.hilite { border-color: #000; }
.calendar td.time span.hilite { background-color: #666; }
.calendar td.time span.hilite { color: #fff; }
.calendar td.time span.active { border-color: #f00; }
.calendar td.time span.active { background-color: #444; }
.calendar td.time span.active { color: #000; }



/*---- CALENDAR ----*/

/*
	main calendar widget
		DIV containing a table
*/

div.calendar { position: relative; }

.calendar, .calendar table {
	font-size: 1.05em;
	cursor: default;
}

.calendar table { width: auto; }


/*
	header
		contains navigation buttons and day names
*/

/* "<<", "<", ">", ">>" buttons have this class */
/* They are the navigation buttons */
/* Make the buttons seem like they're pressing */
.calendar .button {
	text-align: center;
	padding: 2px;
	/*font-size: 90%;*/
}
/*
.calendar .nav {
	background-image: url(menuarrow.gif);
	background-repeat: no-repeat;
	background-position: 100% 100%;
}
*/
/* This holds the current "month, year" */
/* Pressing it will take you to the current date */
.calendar thead .title {
	font-weight: bold;
	text-align: center;
	padding: 2px;
}

/* Row <TR> containing navigation buttons */
.calendar thead .headrow { }

/* Cells <TD> containing the day names */
.calendar thead .name {
	padding: 2px;
	text-align: center;
	text-align: right;
}

/* How do the buttons in header appear when hover */
.calendar thead .hilite { padding: 1px; }

/* Active (pressed) buttons in header */
.calendar thead .active { padding: 2px 0 0 2px; }


/*
	body
		contains all the days in month
*/

/* Cells <TD> containing month days dates */
.calendar tbody .day {
  width: 3em;
text-align: right;
  padding: 2px 4px 2px 2px;
}

.calendar tbody .day.othermonth { font-size: 80%; }

.calendar table .wn { padding: 2px 3px 2px 2px; }

/* Hovered cells <TD> */
.calendar tbody td.hilite { padding: 1px 3px 1px 1px; }

/* Active (pressed) cells <TD> */
.calendar tbody td.active { padding: 2px 2px 0px 2px; }

/* Cell showing today date */
.calendar tbody td.selected {
  font-weight: bold;
  padding: 1px 3px 1px 1px;
}

.calendar tbody td.today { font-weight: bold; }

/* Empty cells (the best is to hide them) */
.calendar tbody .emptycell { visibility: hidden; }

/* Empty row (some months need less than 6 rows) */
.calendar tbody .emptyrow { display: none; }


/*
	footer
		status bar and "Close" button
*/

/* The <TR> in footer (only one right now) */
.calendar tfoot .footrow { text-align: center; }

/* Tooltip (status bar) cell <TD> */
.calendar tfoot .ttip { padding: 2px; }

/* Hover style for buttons in footer */
.calendar tfoot .hilite { padding: 1px; }

/* Active (pressed) style for buttons in footer */
.calendar tfoot .active { padding: 2px 0 0 2px; }


/*
	combo boxes
		(menus that display months/years for direct selection)
*/

.calendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 5em;
  line-height: 1.6em;
  cursor: default;
  /*font-size: 90%;*/
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active { font-weight: bold; }

.calendar td.time {
  padding: 1px 0px;
  text-align: center;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  font-weight: bold;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}


