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

div.calendar {
	position: absolute;
	font-size: 0.9em;
	z-index:150000;
	top:150px;
	left:100px;
}

.calendar table {
  background-color: #FFFFFF;
  border: 13px solid #FFFFFF;
  color: #4F575C;
  cursor: default;
}

/* All cells */
.calendar table td {
	text-align: center;
		padding: 4px;

}

/* ====== HEADER -- contains operational and navigation buttons, and day names ====== */

/*  "?", "X" buttons (also affects "<<", "<", ">", ">>" buttons)  */
.button {
  background: url(../imgneu/buttons/bg_fading_grey.gif) repeat-x;
  color: #4F575C;
}

/* Current "month, year"; pressing it will take you to the current date */
.calendar thead .title {
  padding: 2px;
  text-align: center;
  text-transform: uppercase;
}

/*  Navigation row: "<<", "<", "Today", ">", ">>"  */
.calendar thead .headrow .button {
  background: url(../imgneu/buttons/bg_fading_darkgrey.gif) repeat-x;
  border-right: 1px solid #c0c4c6;
  color: #FFFFFF;
  padding-bottom: 4px;
}

/*  Navigation buttons: "<<", "<", ">", ">>"  */
.calendar .nav {
	background-image: none;
	background-color: inherit;
	font-size: 1.2em;
}

/*  Hover effect for the "?", "X", "<<", "<", ">", ">>" buttons  */
.calendar thead .hilite {
	cursor:pointer;
}

/*  onclick effect for the "?", "X", "<<", "<", ">", ">>" buttons  */
.calendar thead .active {
}

/* Row <TR> containing the day names */
.calendar thead .daynames {
	background-color: white;
	border: 1px solid #999;
}

/* Cells <TD> containing the day names */
.calendar thead .name {
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

/* Weekend day name */
.calendar thead .weekend {
	color: gray;
}

/*  Hover effect for the cells <TD> containing the day names  */
.calendar thead .daynames .hilite {
	background-color: transparent;
}

/*  onclick effect for the cells <TD> containing the day names  */
.calendar thead .daynames .active {
	background-color: transparent;
}


/* ====== BODY -- contains the dates of the month ====== */

/* Cells <TD> containing dates */
.calendar tbody .day {
  background: none repeat scroll 0 0 #F2F2F3;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  text-align: center;
}

.calendar tbody .day.othermonth {
	color: #bbb;
	font-size: 70%;
}

.calendar tbody .day.othermonth.oweekend {
	color: #fbb;
	background-color: #c1cd23;
}

.calendar table .wn {
	visibility: hidden;
	color: #fff;
	background: transparent none;
}

.calendar table .wn {
	visibility: hidden;
	color: #fff;
	background: transparent none;
}

.calendar tbody td {
  margin: 0;
  padding: 4px;
}

.calendar tbody .rowhilite td {
}

.calendar tbody .rowhilite td.wn {
	background-color: #efe;
}

/* Hovered cells <TD> */
.calendar tbody td.hilite {
	background-color: #FFFFFF;
}

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

/* Cells showing weekend dates */
.calendar tbody td.weekend {
  background-color: #e0e1e3;
}

/* Cell showing chosen date */
.calendar tbody td.selected {
  background-color: #AE061F;
  color: #FFFFFF;
}

/* Hovered cells showing weekend dates */
.calendar tbody td.weekend:hover {
	color: black;
	background-color: white;
}

/* Cell showing today's date */
.calendar tbody td.today {
	font-weight: bold;
}

.calendar tbody .disabled {
	color: #999;
}

/* 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;
	background-color: #ffe;
}


/* ====== FOOTER -- status bar ====== */

/* The <TR> in footer (only one right now) */
.calendar tfoot .footrow {
}

/* Tooltip (status bar) cell <TD> */
.calendar tfoot .ttip {
	color: white;
	background: white url(bar.gif) no-repeat scroll;
	height: 14px;
	/* Zero the text: */
	line-height: 0;
	font-size: 0px;
	display: none;
}
/* IE<=7 fails to zero the text completely, making this TD too big */
* html .calendar tfoot .ttip {
	height: 18px;
}
*:first-child+html .calendar tfoot .ttip {
	height: 18px;
}


.calendar tfoot .hilite {
	padding: 1px;
}

.calendar tfoot .active {
	padding: 2px 0px 0px 2px;
}


/* ====== COMBO BOXES -- menus that display months/years for direct selection ====== */

.calendar .combo {
	display: none;
	color: black;
	background-color: white;
	position: absolute;
	top: 0px;
	left: 0px;
	border: 1px solid #8f0225;
	width: 4em;
	cursor: default;
	font-size: 90%;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
	padding: 1px;
	text-align: center;
}

.calendar .combo .label-IEfix {
	width: 4em;
}

.calendar .combo .hilite {
	background-color: #8f0225;
	color: #fff;
}

.calendar .combo .active {
	background-color: #8f0225;
	border-top: 1px solid #8f0225;
	border-bottom: 1px solid #8f0225;
	font-weight: bold;
	color: #fff;
}

.calendar td.time {
	background-color: #fed;
	border-top: 1px solid white;
	padding: 1px 0px;
	text-align: center;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
	background-color: white;
	border: 1px solid #988;
	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: white;
	background-color: #866;
	border-color: black;
}

.calendar td.time span.active {
	background-color: black;
	border-color: #f00;
}
