/* The wrapper div */
.datePicker
        {
        position:absolute;
        min-width:21em;
        width:21em;
        z-index:9999;
        text-align:center;
        font:900 0.8em/0.8em Arial, Verdana, Sans-Serif;
        background:transparent;
        }
/* 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;
        }
/* 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(../images/cal.gif) no-repeat 0 0;
        width:16px;
        height:16px;
        margin-top:0;
        vertical-align:middle;
        cursor:pointer;
        visibility:visible;
        }
/* The next & previous buttons */
.datePicker th button
        {
        display:inline;
        padding:0;
        margin:0;
        color:#000;
        height:1.4em;
        width:1.7em;
        line-height:1em;
        border-width:0;
        background:transparent;
        font-weight:bold;
        cursor:pointer;
}
.datePicker th button:active,
.datePicker th button:focus,
.date-picker-control:active,
.date-picker-control:focus,
.datePicker th button.disabled
        {
        outline:none !important;
        }
span.month-display,
span.year-display
        {
        text-transform:uppercase;
        letter-spacing:1px;
        }
.datePicker th button.prev-but
        {
        text-align:center;
        }
.datePicker th button.next-but
        {
        text-align:center;  
		}
.datePicker th button.today-but
        {
        text-align:center;
        margin:0 auto;
        font:900 1em Arial, Verdana, Sans-Serif;
        height:auto;
        width:auto;
        text-decoration:none;
        line-height:1.6em;
        }
.datePicker th button.fd-disabled
        {
        color:#aaa;
        cursor:default;
        }
/* The mon, tue, wed etc day buttons */
.datePicker th button.fd-day-header
        {
        text-align:center;
        margin:0 auto;
        font:900 1em Arial, Verdana, Sans-Serif;
        height:auto;
        width:auto;
        text-decoration:none;
        text-transform:uppercase;
		font-weight:normal;
        line-height:1.4em;
        }
/* The table */
.datePicker table
        {
        position:relative;
        margin:0;
        padding:0;
        border:2px solid #7f663a;
        background:#fff url(../images/bg_datepicker_gradient.gif) repeat-x top left;
        text-align:center;
        width:100%;
		border-collapse:collapse;
        }
/* Reserved for future use... */
.datePicker table tfoot td
        {
        background:#fff url(../images/gradient-e5e5e5-ffffff.gif) repeat-x 0 -40px;
        }
/* Common TD & TH styling */
.datePicker table td
        {

        border: none;
        padding:0.6em 0.5em 0.5em 0.5em;
        vertical-align:middle;
        /* Opera requires a line-height bigger than 1em in order to redraw properly */
        line-height:1.2em;
        cursor:default;
		font-weight:normal!important;
        background:#ffffff;
        }
.datePicker table th
        {
        border:0 none;
        padding:0 0 0.3em 0;
        line-height:1em;
        font-weight:bold;
        color:#222;
        text-align:center;
        vertical-align:middle;
        }
.datePicker table thead	{
		background:#f7f3e7;
}
.datePicker table thead	td{
		padding:0;
		margin:0;
		}

.datePicker table thead th.date-picker-title
        {
		background:transparent url(../images/bg_datepicker_gradient.gif) bottom left repeat-x;
		border-bottom:1px solid #ffffff;
        padding:7px 0;
        }
/* The "mon tue wed etc" day header button styles */
.datePicker table th.date-picker-day-header
        {
        text-transform:uppercase;
        cursor:help;
		font-weight:normal;
		padding:5px 0 5px 0;
		background:#fff url(../images/bg_dotted.gif) bottom left repeat-x;
        }
/* The "todays date" style */
.datePicker table td.date-picker-today
        {
        background:rgb(255,255,255) url(../images/bullet2.gif) no-repeat 0 0;
        color:rgb(88,88,88) !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:#585858;
        }
/* The date "out of range" style */
.datePicker table td.out-of-range
        {
        color:#ccc !important;
        font-style:normal;
		font-weight:normal;
        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:rgb(145,116,47);
        cursor:pointer;
        /*border-color:rgb(100,130,170);*/
        color:rgb(255,255,255)!important;
        }
