#ody_calendar {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    font-family: Verdana;
    font-size: 11px;
    line-height: 14px;
    margin: 0 auto;

}

#ody_calendar *{
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

#calendar_title {
    height: 29px;
    padding-top: 13px;
    color: #ffffff;
    text-align: center;
    font-family: Arial, Tahoma;
    font-size: 15px;
}

#calendar_controls {
    position: relative;
    overflow: hidden;
    background: #f4f5fb; /* Old browsers */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y0ZjVmYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZGQxZGMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #f4f5fb 0%, #cdd1dc 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4f5fb), color-stop(100%, #cdd1dc)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f4f5fb 0%, #cdd1dc 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f4f5fb 0%, #cdd1dc 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f4f5fb 0%, #cdd1dc 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f4f5fb 0%, #cdd1dc 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f5fb', endColorstr='#cdd1dc', GradientType=0); /* IE6-8 */
    height: 42px;
    text-align: center;
}

#months_navigation a{
    text-decoration: none;
}

.arrow_right {
    position: absolute;
    right: 14px;
    top: 6px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 15px solid #646360;
    -o-transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
}

.arrow_left {
    position: absolute;
    left: 14px;
    top: 6px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 15px solid #646360;
    -o-transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
}

#month_year {
    display: inline-block;
    margin-top: 6px;
    font-family: Arial, Tahoma;
    font-size: 12px;
    color: #414c61;
    text-decoration: none;
}

#days_shortcuts {
    padding-top: 3px;
}

#days_shortcuts span {
    color: #414C61;
    width: 34px;
    display: inline-block;
    font-size: 10px;
    font-family: Arial, Tahoma;
}

#ody_calendar #dates {
    position: relative;
    height: 228px;
    overflow: hidden;
    width: 804px;
    left: -268px;
    z-index: 1;
}

#previous_month {
    float: left;
    width: 267px;
    height: 100%;
    border-left: 1px solid #c0c0d3;
}

#current_month {
    float: left;
    width: 267px;
    height: 100%;
    border-left: 1px solid #c0c0d3;
}

#next_month {
    float: left;
    width: 267px;
    height: 100%;
    border-left: 1px solid #c0c0d3;
}

#ody_calendar .day {
    position: relative;
    float: left;
    width: 36px;
    height: 25px;
    background-color: #ebebf1;
    color: #4e5460;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-bottom: 1px solid #c0c0d3;
    border-right: 1px solid #c0c0d3;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    padding-top: 11px;
    cursor: pointer;
}

#noEvents {
    position: absolute;
    top: 6px;
    width: 100%;
    height: 129px;
    background: url(../images/noEvents.png) center top no-repeat;
}

#eventButtons {
    position: absolute;
    top: 7px;
    width: 100%;
}

#month, #year, #loadDate {
    font-family: Arial, sans-serif !important;
    font-size: 11px !important;
    width: auto !important;
}

#loadDate {
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    display: inline-block;
    margin: 3px;
    border: none;
    color: white;
    font-size: 12px !important;
    margin: 0 3px;
    line-height: 16px;
}

.outOfMonth, .outOfMonthWithEvent {
    color: #c0c6d1 !important;
}
