/*
	InterCity By SIR
*/


/* Calendário */
div.calendar {
	position: relative; 
}

.calendar, .calendar table {
	/*font-family: tahoma,verdana,sans-serif;*/
	font-family: Arial;
	font-size: 8pt;
	border: 1px solid #000000;
	background: #FFFFFF;
	color: #000000;
	cursor: default;
}

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
	text-align: center;    /* They are the navigation buttons */
	padding: 2px;          /* Make the buttons seem like they're pressing */
}

.calendar thead .title { /* This holds the current "month, year" */
	font-weight: bold;      /* Pressing it will take you to the current date */
	text-align: center;
	background: #D1D2D4;
	color: #000000;
	padding: 2px;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
	font-weight: bold;
	background: #D1D2D4;
	color: #000000;
}

/************/
.calendar thead .daynames { /* Row <TR> containing the day names */
	background: #FFFFFF;
}

.calendar thead .name { /* Cells <TD> containing the day names */
	border-bottom: 1px solid #000000;
	color: #000000;
	text-align: center;
	padding: 2px;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
	color: #000000;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
	border: 1px solid #F15A22;
	background: #D3450E;
	color: #FFFFFF;
	padding: 1px;
}

.calendar thead .active { /* Active (pressed) buttons in header */
	background: #D1D2D4;
	padding: 2px 0px 0px 2px;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
	width: 2em;
	color: #000000;
	text-align: right;
	padding: 2px 4px 2px 2px;
}

.calendar tbody .hilite { /* Hovered cells <TD> */
	border: 1px solid #F15A22;
	background: #D3450E;
	color: #FFFFFF;
	padding: 1px 3px 1px 1px;
}

.calendar tbody .active { /* Active (pressed) cells <TD> */
	border: 1px solid #F15A22;
	background: #D1D2D4;
	color: #FFFFFF;
	padding: 2px 2px 0px 2px;
}

.calendar tbody .selected { /* Cell showing today date */
	font-weight: bold;
	border: 1px solid #F15A22;
	background: #D1D2D4;
	color: #FFFFFF;
	padding: 1px 3px 1px 1px;
}

.calendar tbody .weekend { /* Cells showing weekend days */
	color: #F15A22;
}

/*
.calendar tbody .today {  Cell showing selected date 
	font-weight: bold;
	color: #000184;
}
*/

div.calendar tbody .yesterdays { /* Cell showing date before today */
font-style:italic; opacity:0.60; filter: alpha(opacity=60) -moz-opacity: 0.60;
}

div.calendar tbody .today { /* Cell showing selected date */
font-weight: bold; color: #000184; text-decoration: underline; font-size: 10pt;
} 


.calendar tbody .disabled { 
	color: #D1D2D4; 
}

.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) */
	text-align: center;
	background: #D1D2D4;
	color: #000000;
}

/************/
.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  border-top: 1px solid #D1D2D4;
  background: #D1D2D4;
  color: #000000;
  padding: 1px;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  border-top: 1px solid #D1D2D4;
  background: #D1D2D4;
  color: #FFFFFF;
  padding: 1px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  border-top: 1px solid #D1D2D4;
  background: #D1D2D4;
  color: #000000;
  padding: 2px 0px 0px 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border-top: 1px solid #D1D2D4;
  background: #D1D2D4;
  color: #FFFFFF;
  font-size: smaller;
}

.combo .label {
	width: 100%;
	text-align: center;
}

.combo .hilite {
	background: #F15A22;
}

.warning {
  text-align: left;
  font-size: 8pt;
  color: #F15A22;
}
