#Calendar {
    position: relative;
}

#Calendar .calendar {
    width: 100%;
    position: relative;
    z-index: 2;
}

#Calendar .date {
    display: inline-block;
    height: 70px;
    width: 70px;
    border: 2px solid transparent;
    border-radius: 50%;
    line-height: 66px;
    color: #111;
    text-align: center;
}

#Calendar .month {
    height: 80px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background: #ffc800;
    position: relative;
}

#Calendar .prev,
#Calendar .next {
    background: #ffc800;
    height: 80px;
    cursor: pointer;
}

#Calendar .month,
#Calendar .dow {
    text-align: center;
    font-weight: bold;
}

#Calendar .dow {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding-top: 39px;
    padding-bottom: 30px;
}

#Calendar .workday,
#Calendar .weekend {
    text-align: center;
}

#Calendar .weekend {
    color: #990000;
    font-weight: bold;
}

#Calendar .prev,
#Calendar .next {
    position: relative;
}

#Calendar .month {
    border: none !important;
}

#Calendar .prev {
    float: left;
}

#Calendar .next {
    float: right;
}

#Calendar .prev a,
#Calendar .next a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    text-indent: -999px;
    font-size: 0;
}

#Calendar .prev a:before,
#Calendar .next a:before {
    content: '';
    width: 22px;
    height: 22px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    top: 30px;
    position: absolute;
    cursor: pointer;
    overflow: hidden;
}

#Calendar .prev a:hover:before,
#Calendar .next a:hover:before {
    border-color: #e02020;
}

#Calendar .prev a:before {
    left: 20px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

#Calendar .next a:before {
    right: 20px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#Calendar .isevent .date {
    border-color: #ffc800;
    cursor: pointer;
}

#Calendar .isevent .date:hover {
    background: #fff;
    color: #e02020;
}

#Calendar .isevent.booked .date {
    background: #999;
    border-color: #333;
    cursor: default;
}

#Calendar .isevent.act .date {
    background: #fff;
    border-color: #e02020;
    color: #e02020;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

#Calendar .isevent.booked .date:hover {
    color: #fff;
}

#Calendar .event {
    text-align: left;
    position: absolute;
    z-index: 10;
    display: none;
    background: #ffffff;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #e5e5e5));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
    /* IE10+ */
    background: linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
    /* W3C */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0);
    /* IE6-8 */
    border: 10px solid rgba(120, 120, 120, 50);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 10px;
    min-height: 50px;
    min-width: 200px;
    max-height: 150px;
    max-width: 300px;
    margin: -10px 0 0 10px;
    overflow: auto;
}

#Calendar .event div {
    text-align: left;
    font-weight: normal;
}

#Calendar .event div .num {
    font-weight: bold;
    color: #333;
}

#Calendar .event div .eventdate {
    color: #333;
}

#Calendar .cell {
    font-size: 18px;
    text-align: center;
    padding: 7px 0;
}

#Calendar .cover {
    opacity: 0.1;
    position: absolute;
    background: #fff;
    display: none;
    margin: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 6;
}