/* The main calendar widget.  DIV containing a table. */

.calendar {
	font-size: 11px;
	color: #000;
	position: relative;
	cursor: default;
}
.calendar table {
	font-size: 13px;
	cursor: default;
	color: #000;
	margin:0px auto;
}
/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
	text-align: center;
	padding: 5px 1px;
}
.calendar .nav {
	/*background: transparent url(../img/menuarrow.gif) no-repeat 100% 100%;*/
}
.calendar thead .title { /* This holds the current "month, year" */
	font-size:14px;
	font-weight: bold;
	padding: 7px 1px 3px 1px;
	color: #FFFFFF;
	text-align: center;
}
.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}
.calendar thead .headrow td { /* Row <TR> containing navigation buttons */
	color:#FFF;
}
.calendar thead .daynames { /* Row <TR> containing the day names */
}
.calendar thead .name { /* Cells <TD> containing the day names */
	padding: 2px;
	color:#FFFFFF;
	text-align: center;
}
.calendar thead .weekend { /* How a weekend day name shows in header */
	color: #a7a9ac;
}
.calendar thead .hilite { /* How do the buttons in header appear when hover */
}
.calendar thead .active { /* Active (pressed) buttons in header */
	padding: 2px 0px 0px 2px;
}
/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
	text-align: center;
	padding: 3px 8px;
	color: #FFFFFF;
}
.calendar tbody .day.othermonth {
	color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
	color: #faa;
}
.calendar table .wn {
	padding: 2px 3px 2px 2px;
}
.calendar tbody .rowhilite td {
}
.calendar tbody .rowhilite td.wn {
}
.calendar tbody td.weekend { /* Cells showing weekend days */
	color:#a7a9ac;
}
.calendar tbody td.hilite { /* Hovered cells <TD> */
	padding: 0px 1px 0px 1px;
	color:#5366AF;
	background-color:#FFFFFF;
}
.calendar tbody td.active { /* Active (pressed) cells <TD> */
	padding: 1px 1px 1px 1px;
}
.calendar tbody td.selected { /* Cell showing selected date */
	color:#A21C63;
	padding: 0px 1px 0px 1px;
	background-color:#FFFFFF;
}
.calendar tbody td.today { /* Cell showing today date */
	font-weight: bold;
}
.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) */
	/*background: url(../img/calBGBottom.gif) bottom no-repeat;*/
	height:10px;
}
.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
	padding: 1px;
	text-align: center;
}
.calendar tfoot .hilite { /* Hover style for buttons in footer */
	padding: 1px;
}
.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
	padding: 2px 0px 0px 2px;
}
/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
	background-color:#FFFFFF;
	padding: 1px;
	position: absolute;
	display: none;
	width: 4em;
	top: 0px;
	left: 0px;
	cursor: default;
}
.calendar .combo .label, .calendar .combo .label-IEfix {
	text-align: center;
	padding: 1px;
}
.calendar .combo .label-IEfix {
}
.calendar .combo .active {
color:#666666;
	padding: 0px;
}
.calendar .combo .hilite {
	color: #CCCCCC;
}
.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;
}
.calendar td.time span.hilite {
	color: #fff;
}
.calendar td.time span.active {
	color: #0f0;
}
