/* Outer Border and content */
#calendarDiv {
    position: absolute;
    width: 230px;
    border: 2px solid #c9c9c9;
    background-color: #c9c9c9;
    font-family: arial;
    font-size: 10px;
    padding-bottom: 20px;
    visibility: hidden;
}

#calendarDiv span, #calendarDiv img {
    float: left;
}

#calendarDiv .selectBox, #calendarDiv .selectBoxOver {

    line-height: 12px;
    padding: 1px;
    cursor: pointer;
    padding-left: 2px;
}

#calendarDiv .selectBoxTime, #calendarDiv .selectBoxTimeOver {
    line-height: 12px;
    padding: 1px;
    cursor: pointer;
    padding-left: 2px;
}

#calendarDiv td {
    padding: 3px;
    margin: 0px;
    font-size: 10px;
}

/* The month and year select box */
#calendarDiv .selectBox {
    border: 1px solid #bfbfbf;
    color: #333333;
    position: relative;
}

/* The month and year select box hover */
#calendarDiv .selectBoxOver {
    border: 1px solid #bfbfbf;
    background-color: #c9c9c9;
    color: #000000;
    position: relative;
}

#calendarDiv .selectBoxTime {
    border: 1px solid #317082;
    color: #317082;
    position: relative;
}

#calendarDiv .selectBoxTimeOver {
    border: 1px solid #216072;
    color: #216072;
    position: relative;
}

/* ---------the top bar */

/* top bar */
#calendarDiv .topBar {
    height: 16px;
    padding: 2px;
    background-color: #e3e3e3;
    border-bottom: 1px solid #bfbfbf;
}

/* Active day in the calendar */
#calendarDiv .activeDay {
    color: #f90505;
}

/* Bottom banner for today's date */
#calendarDiv .todaysDate {
    height: 17px;
    line-height: 17px;
    padding: 2px;
    background-color: #e3e3e3;
    text-align: center;
    position: absolute;
    bottom: 0px;
    border-top: 1px solid #bfbfbf;
    width: 226px;
}

#calendarDiv .todaysDate div {
    float: left;
}

#calendarDiv .timeBar {
    height: 17px;
    line-height: 17px;
    background-color: #bdd8ef;
    width: 72px;
    color: #FFF;
    position: absolute;
    right: 0px;
}

#calendarDiv .timeBar div {
    float: left;
    margin-right: 1px;
}

/* Select box content */
#calendarDiv .monthYearPicker {
    background-color: #e3e3e3;
    border: 1px solid #AAAAAA;
    position: absolute;
    color: #000000;
    left: 0px;
    top: 15px;
    z-index: 1000;
    display: none;

}

#calendarDiv #monthSelect {
    width: 70px;
}

#calendarDiv .monthYearPicker div {
    float: none;
    clear: both;
    padding: 1px;
    margin: 1px;
    cursor: pointer;
}

/* Select box moving cursor */
#calendarDiv .monthYearActive {
    background-color: #c9c9c9;
    color: #000000;
}

#calendarDiv td {
    text-align: right;
    cursor: pointer;
}

#calendarDiv .topBar img {
    cursor: pointer;
}

#calendarDiv .topBar div {
    float: left;
    margin-right: 1px;
}

.ui-datepicker-title > select {
    color: black;
}