

/*======================================================
  0. MINI CALENDAR SEARCH
  ===================================================== */


#calendarContainer {
    width: 100%;
    float: left;
}

    #calendarContainer h1 {
        font-size: 12px;
        color: #000;
        font-weight: 700;
        font-weight: bold;
        text-transform: uppercase;
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
    }

#calendar {
    padding: 0;
    width: 100%;
    font-size: .8em;
}

    #calendar table {
        color: #000000;
    }

        #calendar table tr {
            margin: 0;
            padding: 0;
        }

        #calendar table tr, #calendar table td, #calendar table th {
            color: #000;
            font-size: 1em;
        }

        #calendar table th {
            font-size: 1em;
            color: #207882;
            font-weight: bold;
            text-align: center;
        }

    #calendar caption {
        text-transform: uppercase;
        padding: 1px 0px 0px 0px !important;
        margin: 0px !important;
        width: 100%;
        background: #ecd47e;
    }

        #calendar caption tr, #calendar caption td, #calendar caption th {
            color: #000 !important;
        }

        #calendar caption table td {
            background: none;
        }

    #calendar #center {
        text-align: center;
        font-weight: 700;
        font-size: 1em;
    }

    #calendar #right {
        display: block;
        height: 33px;
        width: 33px;
        float: right;
        line-height: 33px;
        background: url(../images/structure/chevron-right-cal2x.png) center center no-repeat;
        background-size: auto 12px;
        text-indent: -9999px;
    }

.no-backgroundsize #calendar #right {
    background: url(../images/structure/chevron-right-cal.png) center center no-repeat;
}

#calendar #left {
    display: block;
    height: 33px;
    width: 33px;
    float: left;
    line-height: 33px;
    background: url(../images/structure/chevron-left-cal2x.png) center center no-repeat;
    background-size: auto 12px;
    text-indent: -9999px;
}

.no-backgroundsize #calendar #left {
    background: url(../images/structure/chevron-left-cal.png) center center no-repeat;
}

#calendar table td {
    background-color: transparent;
}

    #calendar table td.day {
        background-color: transparent;
        color: #000;
        font-weight: normal;
    }

#calendar table td.daywithevent {
    background-color: #f4f4f4;
    color: #000;
    font-weight: bold;
}

#calendar table td {
    height: 32px;
    margin: 0;
    padding: 0;
    text-align: center;
}

#calendar table thead th {
    padding-top: 7px;
}















