/*
 * EES CSS Library [Date Picker]
 *
 * @copyright 2010 Squiz Pty Ltd (ABN 77 084 670 600)
 * @license   GNU General Public License v.2
 * @link
*/


/* ---------------------------------------------------------------------------------------------
START: DATE DISPLAY
--------------------------------------------------------------------------------------------- */

.datePicker {
    overflow: hidden;
    padding-bottom: 6px;
}

.datePicker .widgetGroup {
    float: left;
    margin-right: 5px;
}

.datePicker .scrollDown span {
    text-indent:  -9999px;
    background: url(../Images/up_down_spinner.png) 0px -12px no-repeat;
    overflow: hidden;
    display: block;
    width: 20px;
    height: 10px;
}

.datePicker .widgetGroup .scrollDown span.inactive {
    background-position: -20px -12px;
}

.datePicker .widgetGroup .scrollDown span.clicked {
    background-position: -40px -12px;
}

.datePicker .scrollUp span {
    text-indent:  -9999px;
    background: url(../Images/up_down_spinner.png) 0px 0px no-repeat;
    overflow: hidden;
    display: block;
    width: 20px;
    height: 12px;
}

.datePicker .widgetGroup .scrollDown span.inactive {
    background-position: -20px -12px;
}

.datePicker .widgetGroup .scrollUp span.inactive {
    background-position: -20px 0px;
}

.datePicker .widgetGroup .scrollUp span.clicked {
    background-position: -40px 0px;
}

.datePicker .value {
    padding-left: 6px;
    padding-right: 6px;
    height: 20px;
    text-decoration: none;
    color: #000;
    display: block;
}

.datePicker .valueContainer {
    background: #e6e6e6 url(../Images/thin-input-bg.gif) repeat-x;
    border-top: 1px solid #acacac;
    border-left: 1px solid #acacac;
    border-bottom: 1px solid #acacac;
    height: 20px;
    overflow: hidden;
}

.datePicker .widgetGroup .scrollUp,
.datePicker .widgetGroup .scrollDown {
    width: 20px;
    float: left;
}
.datePicker .widgetGroup .valueContainer {
    line-height: 20px;
    float: left;
}

.datePicker .day {
    width: 65px;
}

.datePicker .day .valueContainer {
    width: 44px;
    overflow: hidden;
}

.datePicker .month {
    width: 110px;
}

.datePicker .month .valueContainer {
    width: 89px;
    overflow: hidden;
}

.datePicker .year,
.datePicker .time {
    width: 70px;
}

.datePicker .day,
.datePicker .month,
.datePicker .year,
.datePicker .time {
    margin-top: 3px;
}

.datePicker .year .valueContainer,
.datePicker .time .valueContainer {
    width: 49px;
    overflow: hidden;
}

.datePicker input {
    border: 0;
    background: #FDEFA2;
    padding-left: 6px;
    width: 100%;
    line-height: 20px;
    height: 20px;
}

.datePicker input:focus {
    outline: none;
}

.datePicker input.invalid {
    background: #BE2C2C;
    color: #fff;
}

/* ---------------------------------------------------------------------------------------------
END: DATE DISPLAY
--------------------------------------------------------------------------------------------- */
