.bic_calendar {
    background: #F9F9F9;
    border-radius: 5px;
    margin: 0;
    border: 1px solid #DDD;
}

.bic_calendar a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.bic_calendar .table tbody > tr > td {
    text-align: center;
    padding: 0;
}

.bic_calendar td div {
    padding: 5px;
}

.bic_calendar .header {
    padding: 10px 0;
}

.bic_calendar .button-month-previous {
    padding: 5px;
    float: left;
}

.bic_calendar .button-month-next {
    padding: 5px;
    float: right;
}

.bic_calendar .button-year-previous {
    padding: 5px;
    float: left;
}

.bic_calendar .button-year-next {
    padding: 5px;
    float: right;
}

.bic_calendar .monthAndYear {
    text-align: center;
    font-weight: 500;
}

.bic_calendar .days-month {
    font-weight: 500;
}

.bic_calendar .event {
    display: table-cell;
    border-radius: 0;
    color: #fff;
    background: #3B5A97;
    text-shadow: 0 0 2px #333;
    box-shadow: inset 0 0 5px #000000;
    -moz-box-shadow: inset 0 0 5px #000000;
    -webkit-box-shadow: inset 0 0 5px #000000;
    font-weight: 700;
}

.bic_calendar .event:hover {
    background: #3B5A97;
    text-shadow: 0 0 2px #000;
    box-shadow: inset 0 0 7px #000000;
}

.bic_calendar .event a {
    color: #fff;
}

.bic_calendar .table {
    margin-bottom: 3px;
}

.bic_calendar .days-month td {
    background: #f0f0f0;
}

.bic_calendar .selection {
    background: #8dc8e6;
    box-shadow: inset 0 1px 1px #000000;
    -moz-box-shadow: inset 0 1px 1px #000000;
    -webkit-box-shadow: inset 0 1px 1px #000000;
}

.bic_calendar .first-selection {
    border-radius: 6px 0 0 6px;
    border-right: 0;
}

.bic_calendar .last-selection {
    border-radius: 0 6px 6px 0;
    border-left: 0;
}

.bic_calendar .middle-selection {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.bic_calendar .popover {
    color: #000;
    text-shadow: none;
}

.bic_calendar .popover-content {
    font-weight: 300;
}