/* 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 helvetica, arial; text-align:center; color:#FFF; background:url(../images/sub-back2.png); -moz-border-radius:4px; -webkit-border-radius:4px; }

/* 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 #444; font:10px helvetica, arial; }

/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD { font:bold 10px helvetica, arial; border:1px solid #85C9F3; }

/* 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:bold 10px helvetica, arial; cursor:pointer; border:1px solid #85C9F3; }

/* 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 helvetica, arial; text-transform:uppercase; background:#009ADB; border:1px solid #009ADB; }

/* additional style information for the text that indicates the month and year */
.dpTitleText { font:bold 11px helvetica, arial; color:#FFF; text-transform:uppercase; }

/* the forward/backward buttons at the top */
.dpButton { width:16px; height:16px; font:bold 12px helvetica, arial; color:#222; background:#85C9F3; border:none; cursor:pointer; }
.dpButton:hover { background:#C1E4F9; }

/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton { width:87px; height:22px; margin-bottom:2px; font:bold 11px helvetica, arial; color:#FFF; text-transform:uppercase; background:#009ADB; border:none; }
.dpTodayButton:hover { background:#53CBFF; cursor:pointer; }