/* BEGIN: SEARCH DATE MINI CALENDAR STYLES */
.calendar, .calendar table {
	border: 1px solid #bdb2bf;
  font-size: 11px;
  color: #000;
  cursor: pointer;
  background: #eee;
  font-family: "trebuchet ms",verdana,tahoma,sans-serif;
  border-collapse: separate;
}

.calendar {
  border-color: #797979;
}

.calendar td
{
  background: #fff;
}

.calendar tbody .day { /* Cells <TD> containing month days dates */
  font-family: verdana,tahoma,sans-serif;
  width: 1.8em;
  color: #000;
  text-align: right;
  padding: 1px 2px 1px 1px;
}
.calendar tbody .day.othermonth.oweekend,
.calendar tbody td.weekend { /* Cells showing weekend days */
	color: #000;
  background-color: #FFEEBF;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: none;
  padding: 1px 1px 1px 1px;
  text-align: center;
  color: #000;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #000;
}

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  padding: 1px;          /* Make the buttons seem like they're pressing */
  background: #fff; color: #000;
  font-weight: bold;
}

.calendar thead .title { /* This holds the current "month, year" */
  padding: 1px;
  background: #fff; 
  color: #000;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  padding: 1px;
  background: #fff;
  color: #000;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  background: #fff;
  border-bottom: none;
  padding: 1px;
}
.calendar tbody td.hilite { /* Hovered cells <TD> */
  background: url();
  padding: 0px 1px 0px 0px;
  border: 1px solid #FF9900;
}
.calendar thead .active { /* Active (pressed) buttons in header */
  background: #fff; color: #fff;
  padding: 2px 1px 0px 2px;
  border-bottom: 1px solid #797979;
}
.calendar tbody .rowhilite td,
.calendar tbody .rowhilite td.wn {
  background: none;
  background-color: #FFDC7F;
}
.calendar tr.footrow {
	display: none;	
}
.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  border: 1px solid #797979;
  padding: 0px 1px 0px 0px;
  color: #000;
  background-image: none;
  background-color: #FF9900; 
}
/* END: SEARCH DATE MINI CALENDAR STYLES */