
/* The body part -- contains all the days in month. */
td.calendar_day { /* Cells <TD> containing month days dates */

  text-align: center;
  padding: 2px 4px 2px 2px;
  font-size: 12px;
  color: #59585D;
  background: #E7E2DD;
  border-top: 1px solid #E7E2DD;
  border-right: 1px solid #E7E2DD;
  border-bottom: 1px solid #ACACAC;
  border-left: 1px solid #ACACAC;
}

td.calendar_hilite { /* Hovered cells <TD> */
  padding: 2px 4px 2px 2px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  color: #000000;
  background: #C7C3BE;
  text-align: center;
}

.calendar_name_first { /* Cells <TD> containing the day names */
  border-left: 1px solid #ACACAC;
  border-bottom: 1px solid #ACACAC;
  padding: 2px 4px 2px 2px;
  text-align: center;
  color: #000000;
  font-size: 10px;
  background: #D9D4D0; /*lighter E7E2DD (old:F6F6F6) darker D9D4D0*/
}

.calendar_name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #ACACAC;
  padding: 2px 4px 2px 2px;
  text-align: center;
  color: #000000;
  font-size: 10px;
  background: #D9D4D0; /*lighter E7E2DD (old:F6F6F6) darker D9D4D0*/
}

.calendar_month_name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #ACACAC;
  border-top: 1px solid #ACACAC;
  padding: 2px 4px 2px 2px;
  text-align: center;
  color: #000000;
  font-size: 12px;
  background: #D9D4D0; /*lighter E7E2DD (old:F6F6F6) darker D9D4D0*/
}

td.calendar_leftborder { /* Cells <TD> containing month days dates */
  border-left: 1px solid #ACACAC;
}

td.calendar_rightborder { /* Cells <TD> containing month days dates */
  border-right: 1px solid #ACACAC;
}

td.calendar_nodate {
	
  background: #D9D4D0;
  color: #59585D;
  border-top: 1px solid #D9D4D0;
  border-right: 1px solid #D9D4D0;
  border-bottom: 1px solid #ACACAC;
  border-left: 1px solid #ACACAC;  
}

td.calendar_prev {
  padding: 2px 4px 2px 2px;	
  background: #D9D4D0;
  color: #59585D;
  border-top: 1px solid #ACACAC;
  border-right: 1px solid #ACACAC;
  border-bottom: 1px solid #ACACAC;
  border-left: 1px solid #ACACAC;
  text-align: center;
}

td.calendar_next {
  padding: 2px 4px 2px 2px;
  background: #D9D4D0;
  color: #59585D;
  border-top: 1px solid #ACACAC;
  border-bottom: 1px solid #ACACAC;
  border-left: 1px solid #ACACAC;  
  text-align: center;
}

td.calendar_blank_cell {
  background: #D9D4D0;
}
td.calendar_blank_cell_leftborder {
  background: #D9D4D0;
  border-left: 1px solid #ACACAC;  
}


td.calendar_selected { /* Cell showing selected date */
  font-weight: bold;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ACACAC;
  border-left: 1px solid #ACACAC;
  padding: 2px 4px 2px 2px;
  background: #ffffff;
}

td.calendar_current { /* Cell showing current date */
  width: 2em;
  text-align: right;
  padding: 2px 4px 2px 2px;
  font-size: 12px;
  color: #49926D;
  background: #fffbd3;
  border-bottom: 1px solid #ACACAC;
  border-left: 1px solid #ACACAC;
}



