/* Flexites Calendar stylesheet */

.calendar * { cursor: default; }
.calendar, .calendar table {
    border-width: 0px;
    color: #272425;
}

.calendar {  }
.calendar .disable_layer { position: absolute; z-index: 20; left: 0px; top: 0px; width: 100%; height: 100%; background: black; opacity: .2; filter:alpha(opacity=20);}
.calendar table { width: 100%; }

.calendar thead {
    background: #f0e4c5; 
}

.calendar thead .title {                    /* This holds the current "month, year" */
    font:bold 11px Tahoma;
    border-left: 3px solid #99221a;
    text-align: left;
    padding: 1px 2em;
}

.calendar thead .headrow {                  /* Row <TR> containing navigation buttons */
    background: #fff;
}
.calendar thead .headrow td {
    cursor: pointer;
}

.calendar .button {                         /* "<<", "<", ">", ">>" buttons have this class */
    text-align: center;
    padding: 1px 2px;
}

.calendar .nav {
}

.calendar thead .daynames {                 /* Row <TR> containing the day names */
    background: #f0e4c5;
}

.calendar thead .name {                     /* Cells <TD> containing the day names */
    background: #f0e4c5;
    padding: 2px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 2px solid #fff;
}

.calendar thead .weekend {                  /* How a weekend day name shows in header */
    color: #b92c32;
    font-weight: bold; 
    background: #d1c29d;
}

.calendar thead .hilite {                   /* How do the buttons in header appear when hover */
    background: #f8f3e6;
    padding:1px 2px;
}

.calendar thead .active {                   /* Active (pressed) buttons in header */
    background-color: #f0e4c5;
}

/* The body part -- contains all the days in month. */
.calendar tbody .day {                      /* Cells containing month days dates */
    width: 2em;
    text-align: right;
    background: #f8f3e6;
    padding: 2px 4px 2px 2px;
}
.calendar tbody .other {                    /* Cells containing days from another month  */
    font-size: smaller;
    font-style: italic;
}

.calendar tbody .rowhilite td {             /* Cells in highlited row */
    background: #f0e4c5;
}

.calendar tbody td.weekend {                /* Cells showing weekend days */
    color: #b92c32;
}

.calendar tbody td.today {                  /* Cell showing today date */
    font-weight: bold;
}

.calendar tbody td.hilite {                 /* Hovered cells <TD> */
    cursor: pointer;
    padding: 1px 3px 1px 1px;
    border: 1px solid #d1c29d;
}

.calendar tbody td.active {                 /* Active (pressed) cells <TD> */
    background: #fff;
    padding: 2px 2px 0px 2px;
}

.calendar tbody td.selected {               /* Cell showing selected date */
    background: #fff;
    border: 1px solid #d25e64;
    padding: 1px 3px 1px 1px;
}

.calendar tbody td.disabled {                 /* Disabled cells */
    color: #aaa;
}


/* Combo boxes (menus that display months/years for direct selection) */
.combo {
    position: absolute;
    display: none;
    top: 0px;
    left: 0px;
    width: 4em;
    cursor: default;
    border: 1px solid #d1c29d;
    background: #f8f3e6;
    font-size: smaller;
}

.combo .label {
    text-align: center;
    padding: 1px;
    cursor: pointer;
}

.combo .hilite {                            /* Hovered label */
    background: #f0e4c5;
}

.combo .active {                            /* Selected (active) label */
    border-top: 1px solid #d1c29d;
    border-bottom: 1px solid #d1c29d;
    font-weight: bold;
}

