
/* This is a very basic stylesheet for the date-picker. Feel free to create your own. */

/* The wrapper div */
.ui-datepicker
        {
        position:absolute;
        min-width:21em;
        width:21em;
        z-index:9999;
        text-align:center;
        font:900 0.8em/0.8em Verdana, Sans-Serif;
        /*background:transparent;*/
        color:#fff;
        background-color:#1f5394;
        }
        
/*
   Quirksmode necessity
   --------------------
   
   If your HTML document renders in quirksmode (i.e. has no doctype declaration)
   then uncomment the following CSS rule or the ui-datepicker will be HUGE...

.ui-datepicker th,
.ui-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;
        border:0;
        display:none;
        }
/* The button created beside each input */
.ui-date-picker-control
        {
        border:0 none;
        padding:0;
        margin-left:4px;
        background:transparent url(../media/cal.gif) no-repeat 0 0;
        width:16px;
        height:16px;
        margin-top:0;
        vertical-align:top;
        cursor:pointer;        
        }

.ui-datepicker-prev
{
	background: url(../media/CalendarPrev.gif) no-repeat;
	outline:none;
}
.ui-datepicker-next
{
	background: url(../media/CalendarNext.gif) no-repeat;
	outline:none;
}


/* The next & previous buttons */
.ui-datepicker th button
        {
        display:inline;
        padding:0;
        margin:0;
        color:#ffffff;
        height:1em;
        width:0.8em;
        line-height:0.8em;
        border-width:0;
        font-family: georgia, times new roman, palatino, times, bookman, serif;
        background:transparent;
        font-weight:bold;
        cursor:pointer;
        }
.ui-datepicker th button:active,
.ui-datepicker th button:focus,
.date-picker-control:active,
.date-picker-control:focus
        {
        outline:none;
        }
.ui-datepicker th button.prev-but
        {
        text-align:left;
        }
.ui-datepicker th button.next-but
        {
        text-align:right;
        }
/* The mon, tue, wed etc day buttons */
.ui-datepicker th button.fd-day-header
        {
        text-align:center;
        margin:0 auto;
        font:900 1em Verdana, Sans-Serif;
        height:auto;
        width:auto;
        text-decoration:none;
        line-height:1.4em;
        color:#ffffff;
        background-color:Green;
        }
/* The table */
.ui-datepicker table
        {
        position:relative;
        margin:0;
        padding:0;
        margin-bottom:2px;
        /*border:1px solid #1f5394;*/
        /*background:#fff url(../media/gradient-e5e5e5-ffffff.gif) repeat-x 0 -20px;*/
        text-align:center;
        width:100%;       
        }
.ui-datepicker table tfoot td
        {
        /*background:#fff url(../media/gradient-e5e5e5-ffffff.gif) repeat-x 0 -40px;*/
        background-color:#ffffff;
        }
        
/* Common TD & TH styling */
.ui-datepicker table td
        {
        border: 1px solid #ccc;
        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(../media/gradient-e5e5e5-ffffff.gif) repeat-x 0 -50px;*/
        color:#1f5394;
        background-color:#ffffff;
        }
.ui-datepicker table td:hover
        {
        background-color:#cee3f6;
        }        
.ui-datepicker table th
        {
        border:0 none;
        padding:0;
        line-height:14px;
        font-weight:bold;
        color:#fff;
        text-align:center;
        background-color:#ef4138;
        }
/* The "mon tue wed etc" day header button styles */
.ui-datepicker table th.date-picker-day-header
        {
        text-transform:lowercase;
        cursor:help;        
        }

/* current input value background color */
.ui-datepicker-current-day
{    
	background: #f39f9a !important;
}

/* today's background color */
.ui-datepicker-today 
{    
    background: #f2f8fd !important;
}        

/* the "highlight days" style */
td.date-highlight
        {
        color:#a86666 !important;
        }
        
/* The date "out of range" style */
.ui-datepicker table td.out-of-range
        {
        color:#ccc !important;
        font-style:oblique;
        background:transparent !important;
        cursor:default !important;
        }
/* The "disabled days" style */
.ui-datepicker table td.day-disabled
        {
        color:#aaa !important;
        background:transparent !important;
        cursor:default !important;
        }
/* The "active cursor" style */
.ui-datepicker table td#date-picker-hover
        {
        /*background:#fff url(../media/bg_header.jpg) no-repeat 0 0;*/
        background-color:#1f5394;
        cursor:pointer;
        border-color:rgb(100,130,170);
        color:rgb(100,130,170);
        }
/* Remove the images for Internet Explorer <= v6 using the "* html" hack */
* html .ui-datepicker table td.date-picker-selected,
* html .ui-datepicker table td.date-picker-hover,
* html .ui-datepicker table td
        {
        background-image:none;
        }
