/* Flexites Calendar stylesheet */

.flex-calendar * { cursor: default; }
.flex-calendar{
 z-index: 10;
 padding-bottom: 10px;
 border: 1px solid red;
 }
.flex-calendar, .flex-calendar table {
    border-width: 0px;
    color: #272425;
    background-color: #dedcd0;
}

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

.flex-calendar thead {
    
}

.flex-calendar thead .title {                    /* This holds the current "month, year" */
    font:bold 11px Tahoma;
    text-align: center;
    padding: 0px 2em 10px 2em;
    background-color: #a23e3e; 
    color: #ffffff;
    text-transform: lowercase;
}

.flex-calendar thead .headrow {                  /* Row <TR> containing navigation buttons */
 background: #f0ede4;
 }

.flex-calendar thead .headrow td {
 cursor: pointer;
 }

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

.flex-calendar .nav {
 }

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

.flex-calendar thead .name {                     /* Cells <TD> containing the day names */
 padding: 2px;
 text-align: center;
 font-weight: bold;
 cursor: pointer;
 }

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

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

.flex-calendar thead .active {                   /* Active (pressed) buttons in header */
}

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

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

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

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

.flex-calendar tbody td.hilite {                 /* Hovered cells <TD> */
    cursor: pointer;
    padding: 1px 3px 1px 1px;
}

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

.flex-calendar tbody td.selected {               /* Cell showing selected date */
    background: #f0ede4;
    border: 1px solid #e5e9f5;
    padding: 1px 3px 1px 1px;
    color: #272425;
}

.flex-calendar tbody td.disabled {                 /* Disabled cells */
    color: #888888;
    cursor: default;
}


/* 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 #c9c3b5;
    background: #f0ede4;
    font-size: smaller;
    z-index: 10;
}

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

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

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