/**
 * Style sheet for CalendarPickerControl
 * System-colors theme
 */

div.calendarbutton {
    position: absolute;
    width: 15px;
    height: 16px;
    background: transparent url("calendar_icon.gif") no-repeat center;
}

#CalendarPickerControl {
    background-color: transparent;
    width: 240px;
    height: 200px;
}

    #CalendarPickerControl table.calframe {
        width: 100%;
        border: 1px solid black;
        background-color: buttonface;
        text-align: center;

        border-collapse: separate;
        border-spacing: 0;
        box-sizing:content-box;
    }
    #CalendarPickerControl td{
        padding:4px;
    }
    #CalendarPickerControl td.monthname {
        width: 100%;
        font: normal 13px Arial;
        color: captiontext;
        font-weight: bold;
        background-color: rgb(224, 224, 224);
    }

    #CalendarPickerControl span.monthbutton {
        display: inline-block;
        width: 85px;
    }

    #CalendarPickerControl td.monthnameLNX {
        width: 100%;
        font: normal 13px Arial;
        color: highlighttext;
        font-weight: bold;
        background-color: highlight;
    }

    #CalendarPickerControl table.navigation {
        width: 100%;
        text-align: center;
    }

    #CalendarPickerControl td.navbutton {
        font: normal 12px Arial;
        color: buttontext;
        font-weight: bold;
        background-color: #cde4fe;
        border-width: 1px;
        border-style: solid;
        border-color: buttonhighlight buttonshadow buttonshadow buttonhighlight;
        cursor: pointer;
    }

        #CalendarPickerControl td.navbutton:hover {
            text-decoration: underline;
            border-color: threeddarkshadow buttonhighlight buttonhighlight threeddarkshadow;
            background-color: #ccc;
        }

    #CalendarPickerControl span.yearbutton {
        cursor: pointer;
    }

        #CalendarPickerControl span.yearbutton:hover {
            text-decoration: underline;
        }

    #CalendarPickerControl td.dayname {
        font: normal 11px Arial;
        color: captiontext;
        font-weight: bold;
        background-color: #cde4fe;
    }

    #CalendarPickerControl td.daynameLNX {
        font: normal 11px Arial;
        color: highlighttext;
        font-weight: bold;
        background-color: highlight;
    }

    #CalendarPickerControl td.today {
        font: normal 11px Arial;
      
        /*background-color: buttonface;*/
        color: red;
        text-decoration: none;
        cursor: pointer;
        border-width: 1px;
        border-style: solid;
        border-color: buttonhighlight buttonshadow buttonshadow buttonhighlight;
    }

        #CalendarPickerControl td.today:hover {
            text-decoration: underline;
            background-color: gray;
            border-color: threeddarkshadow buttonhighlight buttonhighlight threeddarkshadow;
        }

    #CalendarPickerControl td.current {
        font: normal 12px Arial;
        font-weight: bold;
        background-color: highlight;
        color: highlighttext;
        text-decoration: none;
        cursor: pointer;
        border-width: 1px;
        border-style: solid;
        border-color: threeddarkshadow buttonhighlight buttonhighlight threeddarkshadow;
    }

        #CalendarPickerControl td.current:hover {
            text-decoration: underline;
        }

    #CalendarPickerControl td.day {
        font: bold 11px Arial;
        background-color: white;
        color: buttontext;
        text-decoration: none;
        cursor: pointer;
        border-width: 1px;
        border-style: solid;
        border-color: buttonhighlight buttonshadow buttonshadow buttonhighlight;
    }

        #CalendarPickerControl td.day:hover {
            text-decoration: underline;
            background-color: grey;
            border-color: threeddarkshadow buttonhighlight buttonhighlight threeddarkshadow;
        }

    #CalendarPickerControl td.weekend {
        font: normal 11px Arial;
        color: buttontext;
        text-decoration: none;
        background-color: #ccc;
        font-style: italic;
        cursor: pointer;
        border-width: 1px;
        border-style: solid;
        border-color: buttonhighlight threeddarkshadow threeddarkshadow buttonhighlight;
    }

        #CalendarPickerControl td.weekend:hover {
            background-color: buttonshadow;
            text-decoration: underline;
            border-color: threeddarkshadow buttonhighlight buttonhighlight threeddarkshadow;
        }

    #CalendarPickerControl td.dayothermonth {
        font: normal 11px Arial;
        background-color: buttonhighlight;
        color: inactivecaptiontext;
        border: 1px solid buttonhighlight;
    }

    #CalendarPickerControl td.weeknumber {
        font: normal 9px Arial;
        background-color: red;
        color: inactivecaptiontext;
        border-width: 0px;
    }
