/* The wrapper div (note: ie7 hack at bottom of file) */
.datePicker
        {
        position:absolute;
        min-width:1px;
        width:1px;
        z-index:9999;
        text-align:center;
        font-family:arial;
		font-size:10px; 
		text-transform: uppercase;
        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:10px;
        }
*/
/* The iframe hack to cover selectlists in Internet Explorer <= v6 */
.iehack
        {
        position:absolute;
        background:#fff;
        z-index:9998;
        padding:0;
        border:0;
        display:none;
        margin:0;
		font-size:10px; 		
        }
/* The button created beside each input. (position:relative required for correct positioning of datePicker in IE) */
.date-picker-control
        {
        position:relative;
        border:0 none;
        padding:0;
        margin-left:4px;
        background:transparent url(../imgs/cal.gif) no-repeat 0 0;
        width:16px;
        height:16px;
        margin-top:0;
        vertical-align:top;
        cursor:pointer;
        }
/* The next & previous buttons */
.datePicker th button
        {
        display:inline;
        padding:0;
        margin:0;
        color:#000;
        /* height:1em; */
        /* width:1em; */
        /* line-height:1em; */
        border-width:0px;
        font-family: verdana;
        background:transparent;
        font-weight:bold;
        cursor:pointer;
        /* 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;
        }
span.month-display,
span.year-display
        {
        text-transform:uppercase;
        /* letter-spacing:1px; */
        }
.datePicker th button.prev-but
        {
        text-align:left;
        font-size:14px;
        }
.datePicker th button.next-but
        {
        text-align:right;
        font-size:14px;
        }
.datePicker th button.today-but
        {
        text-align:center;
        margin:5px auto 0 auto;
        font-family:arial;
        height:auto;
        width:auto;
        text-decoration:none;
		font-weight:normal;
		font-size:10px; 		
		}
.datePicker th button.disabled
        {
        color:#999;
        cursor:default;
        }
/* The mon, tue, wed etc day buttons */
.datePicker table th,
.datePicker th button.fd-day-header
        {
        text-align:center;
        margin:0 auto;
        font-family:arial;
        height:auto;
        width:auto;
        text-decoration:none;
		text-transform: uppercase;
		font-weight:normal;
		vertical-align:top;
		font-size:10px; 		
        }
/* The table */
.datePicker table
        {
        position:relative;
        margin:0;
        padding:0;
        border:1px solid #ccc;
        background:#fff url(../imgs/gradient-e5e5e5-ffffff.gif) repeat-x 0 -20px;
        text-align:center;
        width:100%;
		font-size:10px;
        }
/* Reserved for future use... */
.datePicker table tfoot td
        {
        background:#fff url(../imgs/gradient-e5e5e5-ffffff.gif) repeat-x 0 -40px;
        }
/* Common TD & TH styling */
.datePicker table td
        {
        border: 1px solid #ccc;
        padding:1px 1px 1px 1px;
        vertical-align:middle;
        /* Opera requires a line-height bigger than 1em in order to redraw properly */
        /* line-height:1.2em; */
        cursor:default;
        background:#fff url(../imgs/gradient-e5e5e5-ffffff.gif) repeat-x 0 -50px;
        }
.datePicker table thead th.date-picker-title
        {
		background: #666;
		color:#fff;
        }
/* The "mon tue wed etc" day header button styles */
.datePicker table th.date-picker-day-header
        {
        cursor:help;
        }
/* The "todays date" style */
.datePicker table td.date-picker-today
        {
        background:#f3f2b1 !important;
        color:#000 !important;
		border-color:#bbb !important;
        }
/* The "selected date" style */
.datePicker table td.date-picker-selected-date
        {
        color:#fff !important;
        border-color:#666 !important;
		background:#666 !important;
        }
/* the "highlight days" style */
td.date-picker-highlight
        {
        color:#aa1111;
        }
/* The date "out of range" style */
.datePicker table td.out-of-range
        {
        color:#ccc !important;
        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:#ccc;
        cursor:pointer;
        border-color:#666;
        color:#000;
        }
/* 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;
        }
/* Target ie7 only */
*:first-child+html .datePicker
        {
         min-width:150px; 
         width:150px; 
        }

