.jalendar {
    background-color: #fff;
    display: none;
    position: absolute;
    width: 240px;
    margin-top: -5px;
    left: 870px;
    border-bottom: 1px solid #eaeaea;
}
.jalendar .left {
    float: left;
}
.jalendar .clear {
    clear: both;
}
.jalendar.mid {
    width: 420px;
}
.jalendar .added-event {
    display: none;
}

.jalendar-pages {
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;    
}
.jalendar .pages-bottom {
    position: absolute;
    border-radius: 0 0 2px 2px;
    height: 4px;
    bottom: -4px;
    left: 1%;
    width: 98%;
    box-shadow: 0 2px 3px rgba(0,0,0,0.5), inset 0 1px 2px rgba(0,0,0,0.5);
    background: #fff;
}
.jalendar-pages > .header {
    text-align: center;
    position: relative;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    overflow: hidden;
    width: 238px;
}
.jalendar-pages > .header h1 {
    margin: 10px 0 0 0;
    padding: 5px 0 10px;
    display: inline-block;
    font: 15px "Roboto", Arial, Helvetica, Geneva, sans-serif;
    font-weight: 900;
    color: #999;
}
.jalendar-pages > .header .prv-m, 
.jalendar-pages > .header .nxt-m {
    text-decoration: none;
    width: 15px;
    position: absolute;
    display: inline-block;
    height: 15px;
    margin: 16px -2px 0px -2px;
    cursor: pointer;
}
.jalendar-pages > .header .prv-m {
    background: url('../images/icon_left.png') no-repeat;
    left: 20px;
}
.jalendar-pages > .header .nxt-m {
    background: url('../images/icon_right.png') no-repeat;
    right: 20px;
}
.jalendar-pages > .header .day-names {
    overflow: hidden;
    text-align: center;
    font-size: 0;
    width: 248px;
    border: 0px solid red;
    margin-left:-5px;
    height: 22px;
}
.jalendar-pages > .header div {
    display: inline-block;
    width: 13.4%;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    height: 17px;
    padding: 5px 0;
    font: 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
    color: #999;
}
.jalendar .header h2:first-child {
    /*background: none !important;*/
}
.jalendar .total-bar {
    margin: 12px 15px;
    /*background-color: rgba(0,0,0,0.06);*/
    border-radius: 30px;
    box-shadow: inset 0px 1px 3px rgba(0,0,0,0.3);
    padding: 6px 12px;
    color: #666;
    font: 12px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
.jalendar .total-bar b {
    color: #65c2c0;
    text-shadow: 0 1px 1px rgba(255,255,255,1);
}
.jalendar .days {
    font-size: 0;
    text-align: center;
    width: 240px;
}
.jalendar .days .day {
    display: inline-block;
    width: 14.28%;
    padding: 3px;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    font: 14px "Roboto", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    color: #373737;
    cursor: pointer;
    position: relative;
}
.jalendar.mid .days .day {
    height: 40px;
    font-size: 18px;
    padding-top: 7px;
}
.jalendar .days .day:hover {
	background-color: #feffea;
}
.jalendar .days .day.selected {
    /*box-shadow: inset 0 5px 15px rgba(255,255,255,0.4), inset 0 -10px 10px rgba(0,0,0,0.2);*/
    color: #fff;
    /*text-shadow: 0 1px 1px #000;*/
    background-color: #00a018;
}
.jalendar .days .day:nth-child(7n+1) {
    border-left: 1px solid #e0e0e0;
}
