/* This is a very basic stylesheet for the date-picker. Feel free to create your own. */
/* The wrapper div */
.datePicker {position:absolute;min-width:21em;width:21em;z-index:9999;text-align:center;font-family:'Trebuchet MS', Verdana, Arial, Helvetica, sans-serif;color:#333;font-size:13px;background:transparent;}
/*
   Quirksmode necessity
   --------------------
   
   If your HTML document renders in quirksmode (i.e. has no doctype declaration)
   then uncomment the following CSS rule or the datePicker will be HUGE in IE...

.datePicker th,
.datePicker td {font-size:11px;}
*/
/* The iframe hack to cover selectlists in Internet Explorer <= v6 */
.iehack {position:absolute;background:#fff;z-index:9998;padding:0;order:0;display:none;}
/* The button created beside each input */
.date-picker-control {display:inline;width:28px;height:21px;margin:0;padding:0;cursor:pointer;background:transparent url(../site_images/datepicker/cal.gif) no-repeat 2% 50%;border:0;clear:both;}
/* The next & previous buttons */
.datePicker th button {display:inline;height:1em;width:1em;padding:0;margin:0;color:#000;line-height:1em;border:0;font-family:"Courier New", Courier, mono;font-weight:bold;cursor:pointer;background:transparent;/* Remove the next line (or add it to an IE specific stylesheet imported using conditional comments) should you wish to validate the css */outline:expression(hideFocus="true");}
.datePicker th button:active,
.datePicker th button:focus,
.date-picker-control:active,
.date-picker-control:focus,
.datePicker th button.disabled {outline:none !important;/* Remove the next line should you need to validate the css */-moz-outline-style:none;}
.datePicker th button.prev-but {text-align:left;}
.datePicker th button.next-but {text-align:right;}
.datePicker th button.disabled {color:#aaa;cursor:default;}
.but-spacer {margin-right:0.2em;}
/* The mon, tue, wed etc day buttons */
.datePicker th button.fd-day-header {width:auto;height:auto;margin:0 auto;font-family:"Courier New", Courier, mono;font-weight:bold;line-height:1.4em;text-align:center;text-decoration:none;}
/* The table */
.datePicker table {position:relative;margin:0;padding:0;border:1px solid #203949;background:#fff url(../site_images/datepicker/gradient-e5e5e5-ffffff.gif) repeat-x 0 -20px;text-align:center;width:100%;}
.datePicker table tfoot td {background:#fff url(../site_images/datepicker/gradient-e5e5e5-ffffff.gif) repeat-x 0 -40px;}
/* Common TD & TH styling */
.datePicker table td {border:1px solid #203949;padding:0.6em 0.5em 0.5em 0.5em;/* Opera requires a line-height bigger than 1em in order to redraw properly */line-height:1.2em;cursor:default;background:#fff url(../site_images/datepicker/gradient-e5e5e5-ffffff.gif) repeat-x 0 -50px;}
.datePicker table th {border:0;padding:0;line-height:1em;font-weight:bold;color:#f06;text-align:center;}
/* The "mon tue wed etc" day header button styles */
.datePicker table th.date-picker-day-header {text-transform:lowercase;cursor:help;}
/* The "todays date" style */
.datePicker table td.date-picker-today {background:#fff url(../site_images/datepicker/bullet2.gif) no-repeat 0 0;color:#f06 !important;}
/* The "selected date" style */
.datePicker table td.date-picker-selected-date {color:#333 !important;border-color:#333 !important;}
/* the "highlight days" style */
td.date-picker-highlight {color:blue;}
/* The date "out of range" style */
.datePicker table td.out-of-range {color:#ccc !important;font-style:oblique;background:transparent !important;cursor:default !important;}
/* The "disabled days" style */
.datePicker table td.day-disabled {color:#aaa !important;background:transparent !important;cursor:default !important;}
/* The "active cursor" style */
.datePicker table td#date-picker-hover {background:#fff url(../site_images/datepicker/bg_header.jpg) no-repeat 0 0;cursor:pointer;border-color:#f06;color:#f06;}
/* Remove the images for Internet Explorer <= v6 using the "* html" hack */
* html .datePicker table td.date-picker-selected,
* html .datePicker table td.date-picker-hover,
* html .datePicker table td {background-image:none;}