.calendar {
	position: relative;
	margin: 0px 0px 0px 25px;
	cursor: auto;
	padding: 0px 10px 5px 10px;
	border: solid #efe9d9;
	border-width: 1px 2px 2px 1px;
	background: #ffffff;
	zoom: 1;
}
.calendar table {background-color: #ffffff;}
.calendar table td {
	line-height: 100%;
	font-family: Tahoma;
	font-size: 11px;
	color: #5b5b5b;
	padding: 0px;
	border: 1px solid #f9f7f1;
	text-align: center;
	vertical-align: middle;
}

/* Header part -- contains navigation buttons and day names. */
.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
	text-align: center;    /* They are the navigation buttons */
	padding: 2px;          /* Make the buttons seem like they're pressing */
	cursor: pointer;
}
.calendar .nav {font-size: 14px; font-weight: bold;}
.calendar thead td {
	padding: 10px 0px 10px 0px !important;
	border-style: none;
	border-bottom: solid 1px #efead9 !important;
}
.calendar thead .title { /* This holds the current "month, year" */
	font-weight: bold;      /* Pressing it will take you to the current date */
	text-align: center;
}
.calendar thead .daynames td {
	padding: 0px !important;
	border: 1px solid #f9f7f1;
	background: #efead9;
	font-size: 11px;
	font-weight: bold;
	width: 28px;
	height: 28px;
	*height: 24px;
}
.calendar thead .hilite { /* How do the buttons in header appear when hover */
	color: #198396;
	cursor: pointer;
}

/* The body part -- contains all the days in month. */
.calendar tbody .daysrow td {
	font-size: 11px;
	border: 2px solid #f9f7f1;
	width: 28px;
	height: 28px;
	*height: 24px;
}
.calendar tbody .day { /* Cells <TD> containing month days dates */
	background: #f9f7f1;
	cursor: pointer;
}
.calendar tbody .day.othermonth {color: #ffffff;}
.calendar tbody .wn {
	padding: 0px !important;
	border: 1px solid #f9f7f1 !important;
	background: #efead9;
	font-size: 11px;
	cursor: auto !important;
}
.calendar tbody td.hilite {text-decoration: underline;}
.calendar tbody td.today { /* Cell showing today date */
	border: 2px solid #198396 !important;
	background: #ffffff !important;
	color: #5b5b5b !important;
}
.calendar tbody td.selected,
.calendar tbody td.active {
	border: 2px solid #198396 !important;
	background: #198396;
	color: #ffffff;
}
.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 td {
	padding: 10px 0px 10px 0px !important;
	border-style: none;
	border-top: solid 1px #efead9 !important;
}
.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
	text-align: center;
	color: #ffffff;
}
.calendar tfoot .ttip {font-size: 11px;}

/* Combo boxes (menus that display months/years for direct selection) */
.calendar .combo {
	position: absolute;
	display: none;
	top: 0px;
	left: 0px;
	width: 4em;
	cursor: default;
	border: 1px solid #efead9;
	background: #f9f7f1;
	color: #5b5b5b;
	font-size: 90%;
}
.calendar .combo .label, .calendar .combo .label-IEfix {text-align: center; padding: 1px;}
.calendar .combo .label-IEfix {width: 4em;}
.calendar .combo .hilite, .calendar .combo .active {background: #198396; color: #ffffff;}
