/* the div that holds the date picker calendar */
.dpDiv { width:195px; }

/* the table (within the div) that holds the date picker calendar */
.dpTable { width:195px; font:11px arial; text-align:center; color:#FFF; background:#787D00; opacity:.85; }

/* a table row that holds date numbers (either blank or 1-31) */
.dpTR { }

/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR { }

/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR { }

/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR { }

/* a table cell that holds a date number (either blank or 1-31) */
.dpTD { border:1px solid #111; font:10px arial; }

/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD { font:10px arial; background:url(../images/datepicker-tdhover.gif) top repeat-x; border:1px solid #797E01; }

/* the date number table cell that the mouse pointer is currently over (you can use contrasting colors to make it apparent which cell is being hovered over) */
.dpTDHover { font:10px arial; background:url(../images/datepicker-tdhover.gif) top repeat-x; cursor:pointer; border:1px solid #7D6D4F; }

/* the table cell that holds the name of the month and the year */
.dpTitleTD { }

/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD { }

/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD { }

/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD { font:bold 11px arial; text-transform:uppercase; background:#BCB4A4 url(../images/datepicker-day-back.png) top repeat-x; border:1px solid #BCB4A4; }

/* additional style information for the text that indicates the month and year */
.dpTitleText { font:bold 11px arial; color:#FFF; text-transform:uppercase; }

/* the forward/backward buttons at the top */
.dpButton { width:16px; height:16px; font:bold 12px arial; color:#FFF; background:url(../images/datepicker-nextprev.gif); border:none; cursor:pointer; }
.dpButton:hover { opacity:.65; }

/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton { width:87px; height:22px; font:bold 11px arial; color:#DED3B4; text-transform:uppercase; background:url(images/datepicker-button-up.png); border:none; }
.dpTodayButton:hover { color:#FFF; background:url(images/datepicker-button-over.png); cursor:pointer; }