
div#datepicker { padding: 2px; border: 1px solid #EEE; background: #FFF; }
div#datepicker table { border: none; background: #EEE; }
div#datepicker table td { text-align: center; vertical-align: middle; }
div#datepicker table td.dpTD { border: 1px solid #CCC; width: 25px; padding: 3px 0px; }

/* 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) */
div#datepicker td.dpTDHover { cursor: pointer; background: #CCCCFF; }

/* the top table row that holds the month, year, and forward/backward buttons */
div#datepicker tr.dpTitleTR { background: #666; color: #FFF; }
div#datepicker tr.dpTitleTR td { border-bottom: 1px solid #333; }

div#datepicker button { background: #EEE; font-size: 90%; color: #666; border: 1px solid #CCC; margin: 2px; cursor: pointer; }
div#datepicker button:hover { background: #FFF; }
div#datepicker tr.dpTitleTR button { width: 20px; }

/* the bottom table row, that has the "This Month" and "Close" buttons */
div#datepicker tr.dpTodayButtonTR { background: #DDD; }
div#datepicker tr.dpTodayButtonTR button { padding: 1px 4px; }

/* a table row that holds date numbers (either blank or 1-31) */
div#datepicker .dpTR {}

/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
div#datepicker .dpDayTR {}

/* a table cell that holds a date number (either blank or 1-31) */
div#datepicker .dpTD {}

/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
div#datepicker .dpDayHighlightTD {}

/* the table cell that holds the name of the month and the year */
div#datepicker .dpTitleTD {}

/* a table cell that holds one of the forward/backward buttons */
div#datepicker .dpButtonTD { font-size: 85%; }

/* the table cell that holds the "This Month" or "Close" button at the bottom */
div#datepicker .dpTodayButtonTD {}

/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
div#datepicker td.dpDayHighlightTD { background: #990000; color: #FFF; }

/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
div#datepicker .dpDayTD {}

/* additional style information for the text that indicates the month and year */
div#datepicker .dpTitleText {}

/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */
div#datepicker .dpDayHighlight {}

/* the forward/backward buttons at the top */
div#datepicker .dpButton {}

/* the "This Month" and "Close" buttons at the bottom */
div#datepicker .dpTodayButton{}


