/* The main calendar widget.  DIV containing a table. */

.calendar {
	width : 185px;
	position: relative;
	display: none;
	font-size: 11px;
	color: #000;
	cursor: default;
	font-family: verdana,sans-serif;
	border-left : 1px solid #E2E2E2;
}

.calendar table {
	color: #000;
	cursor: default;
	background: #FAFAFA;
	font-family: verdana,sans-serif;
	width : 100%;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
	font-size: 11px;
  text-align: center;
  padding: 0px;
  background: #EECECF;
	cursor: pointer;
}

.calendar thead .title {
	/* This holds the current "month, year" */
	padding: 1px;
	background: #EECECF;
	color: #000000;
	text-align: center;
	width : 150px;
	height : 13px;
	font-size: 11px;
}
.calendar thead .topbar {
	/* Row <TR> containing the day names */
	height : 5px;
	background: #DC878A;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}

.calendar thead .daynames {
	/* Row <TR> containing the day names */

	font-size: 10px;
	color: #000;
	cursor: default;
	font-family: verdana,sans-serif;
	height : 8px;
}

.calendar thead .name { 	/* Cells <TD> containing the day names */
	border-top: 1px solid #9E9E9E;	  
	border-bottom: 1px solid #9E9E9E;
	padding: 0px;
	text-align: center;
	background: #FAFAFA;
	font-size: 10px;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
	border-right : 1px solid #E2E2E2;
}

.calendar thead .hilite {
	/* How do the buttons in header appear when hover */
}

.calendar thead .active { /* Active (pressed) buttons in header */
}

/* The body part -- contains all the days in month. */

.calendar tbody {
	font-size: 11px;
	color: #000;
	cursor: default;
	background: #FAFAFA;
	font-family: verdana,sans-serif;
	padding: 1px;
	width : 150px;
}
.calendar tbody .day {
	/* Cells <TD> containing month days dates */
	text-align: center;
	width : 25px;
	height : 25px;
	border-right : 1px solid #E2E2E2;
	border-bottom : 1px solid #E2E2E2;
	cursor: pointer;
	font-size: 11px;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  background: #f4f0e8;
}

.calendar tbody .rowhilite td {
}

.calendar tbody .rowhilite td.wn {
}

.calendar tbody td.hilite { /* Hovered cells <TD> */

}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  background: #e4e0d8;
}

.calendar tbody td.selected { /* Cell showing selected date */
  background: #e4e0d8;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
}

.calendar tbody td.today { /* Cell showing today date */
  color: #FAFAFA;
  background: #E84D58;
}

.calendar tbody .disabled { 
	color: #9E9E9E; 
	cursor: default;
}

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
	text-align: center;
	width : 25px;
	height : 25px;
	border-right : 1px solid #E2E2E2;
	border-bottom : 1px solid #E2E2E2;
	cursor: default;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  	cursor: default;
}

/* 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> */
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
}

/* Combo boxes (menus that display months/years for direct selection) */
