/* The main calendar widget.  DIV containing a table. */

	div.calendar 												{ z-index:100; position: relative; }
	.calendar, .calendar table 									{ border: 1px solid #313131; font-size: 11px; color: #000000; cursor: DBDBDB; background: #ECECEC; font-family: Verdana, Arial, Helvetica, Sans-serif; }

/* Header part -- 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 2px 2px 2px; color: #1F1F1F; }

	.title 														{ color: #1F1F1F !important; }
	.calendar .nav 												{ background: url(menuarrow2.gif) no-repeat 100% 100% #9D9D9D; }
	.nav 														{ font-size: 30px; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px; }

/* This holds the current "month, year" */
/* Pressing it will take you to the current date */
	.calendar thead .title 										{ font-weight: bold; text-align: center; background: #9D9D9D; color: #FFFFFF; padding: 2px 2px 2px 2px; }

/* Row <TR> containing navigation buttons */
	.calendar thead tr 											{ background: #9D9D9D; color: #FFFFFF; }

/* Row <TR> containing the day names */
	.calendar thead .daynames 									{ background: #DBDBDB; }

/* Cells <TD> containing the day names */
	.calendar thead .name 										{ border-bottom: 1px solid #313131; padding: 2px 2px 2px 2px; text-align: center; color: #000000; }

/* How a weekend day name shows in header */
	.calendar thead .weekend 									{ color: #AA6666; }

/* How do the buttons in header appear when hover */
	.calendar thead .hilite 									{ background-color: #9D9D9D; color: #000000; border: 1px solid #313131; padding: 1px 1px 1px 1px; }

/* Active (pressed) buttons in header */
	.calendar thead .active 									{ background-color: #313131; border: 1px solid #AA6666; padding: 2px 0px 0px 2px; }

/* The body part -- contains all the days in month. */

/* Cells <TD> containing month days dates */
	.calendar tbody .day 										{ width: 2em; color: #445566; text-align: right; padding: 2px 4px 2px 2px; }
	.calendar tbody .day.othermonth 							{ font-size: 80%; color: #BBBBBB; }
	.calendar tbody .day.othermonth.oweekend 					{ color: #FFBBBB; }
	.calendar table .wn 										{ padding: 2px 3px 2px 2px; border-right: 1px solid #000000; background: #DBDBDB; }
	.calendar tbody .rowhilite td 								{ background: #DBDBDB; }
	.calendar tbody .rowhilite td.wn 							{ background: #ECECEC; }

/* Hovered cells <TD> */
	.calendar tbody td.hilite 									{ background: #DBDBDB; padding: 1px 3px 1px 1px; border: 1px solid #AA6666; }

/* Active (pressed) cells <TD> */
	.calendar tbody td.active 									{ background: #CCDDEE; padding: 2px 2px 0px 2px; }

/* Cell showing today date */
	.calendar tbody td.selected 								{ font-weight: bold; border: 1px solid #000000; padding: 1px 3px 1px 1px; background: #FFFFFF; color: #000000; }

/* Cells showing weekend days */
	.calendar tbody td.weekend 									{ color: #AA6666; }

/* Cell showing selected date */
	.calendar tbody td.today 									{ font-weight: bold; color: #D50000; }

	.calendar tbody .disabled 									{ color: #999999; }

/* Empty cells (the best is to hide them) */
	.calendar tbody .emptycell 									{ visibility: hidden; }

	.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
	  display: none;
	}

/* The footer part -- status bar and "Close" button */
/* The <TR> in footer (only one right now) */

	.calendar tfoot .footrow 									{  text-align: center; background: #313131; color: #FFFFFF; }

/* Tooltip (status bar) cell <TD> */
	.calendar tfoot .ttip 										{ background: #9D9D9D; color: #FFFFFF; border-top: 1px solid #313131; padding: 1px; }

/* Hover style for buttons in footer */
	.calendar tfoot .hilite 									{ background: #B8DAF0; border: 1px solid #178AEB; color: #000000; padding: 1px 1px 1px 1px; }

/* Active (pressed) style for buttons in footer */
	.calendar tfoot .active 									{ background: #313131; padding: 2px 0px 0px 2px; }

/* Combo boxes (menus that display months/years for direct selection) */
	.calendar .combo 											{ position: absolute; display: none; top: 0px; left: 0px; width: 4em; cursor: DBDBDB; border: 1px solid #665555; background: #DBDBDB; color: #000000; font-size: 90%; z-index: 100; }

	.calendar .combo .label,
	.calendar .combo .label-IEfix 								{ text-align: center; padding: 1px 1px 1px 1px; }
	.calendar .combo .label-IEfix 								{ width: 4em; }
	.calendar .combo .hilite 									{ background: #9D9D9D; border-top: 1px solid #665555; border-bottom: 1px solid #665555; font-weight: bold; }
	.calendar .combo .active 									{ border-top: 1px solid #665555; border-bottom: 1px solid #665555; background: #ECECEC; font-weight: bold; }
	.calendar td.time 											{ border-top: 1px solid #000000; padding: 1px 0px 1px 0px; text-align: center; background-color: #E3F0F9; }

	.calendar td.time .hour,
	.calendar td.time .minute,
	.calendar td.time .ampm 									{ padding: 0px 3px 0px 4px; border: 1px solid #888899; font-weight: bold; background-color: #ECECEC; }
	.calendar td.time .ampm 									{ text-align: center; } 
	.calendar td.time .colon 									{ padding: 0px 2px 0px 3px; font-weight: bold; }
	.calendar td.time span.hilite 								{ border-color: #000000; background-color: #267DB7; color: #FFFFFF; }
	.calendar td.time span.active 								{ border-color: red; background-color: #000000; color: #A5FF00; }
