/*******************************Calendar Top Navigation*********************************/
@import url(https://fonts.googleapis.com/css?family=Roboto);
div#calendar{
    margin:0px auto;
    padding:0px;
    width: 100%;
    font-family:Roboto,Tahoma,Helvetica, "Times New Roman", Times, serif;
    /*background-color: #f1f1f1;*/
}

div#calendar a {
    color: #cb7228;
    text-decoration: none;
}
div#calendar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

div#calendar div.box{
    position:relative;
    top:0px;
    left:0px;
    width:100%;
    /*height:40px;*/
    background-color:   #fff ;
}

div#calendar div.header{
    line-height:40px;
    vertical-align:middle;
    /*position:absolute;
    left:11px;
    top:0px;*/
   /* width:582px;*/
   /* height:40px;*/
    text-align:center;
}

div#calendar div.header a.prev,div#calendar div.header a.next{
    position:absolute;
    top:0px;
    height: 17px;
    display:block;
    cursor:pointer;
    text-decoration:none;
    color:#213752;
}

div#calendar div.header span.title{
    color:#213752;
    font-size:18px;
}


div#calendar div.header a.prev{
    left:0px;
}

div#calendar div.header a.next{
    right:0px;
}




/*******************************Calendar Content Cells*********************************/
div#calendar div.box-content{
    /*border:1px solid #787878 ;*/
    border-top:none;
}



div#calendar ul.label{
    float:left;
    margin: 0px;
    padding: 0px;
    margin-top:5px;
    margin-left: 5px;
}

div#calendar ul.label li{
    margin:0px;
    padding:0px;
    margin-right:5px;
    float:left;
    list-style-type:none;
    width:80px;
    height:40px;
    line-height:40px;
    vertical-align:middle;
    text-align:center;
    color:#000;
    font-size: 15px;
    background-color: transparent;
}
div#calendar li {
    display: block;
    float: left;
    width: 14.363%;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    margin-right: -1px;
    margin-bottom: -1px;
}

div#calendar ul.dates{
   /* float:left;
    margin: 0px;
    padding: 0px;
    margin-left: 5px;
    margin-bottom: 5px;*/
}

/** overall width = width+padding-right**/
div#calendar li{
    display: block;
    float: left;
    width: 14.342%;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    margin-right: -1px;
    margin-bottom: -1px;
}
div#calendar ul.weekdays {
    height: 40px;
    background: #213752;
}
div#calendar ul.weekdays li {
    text-align: center;
    text-transform: uppercase;
    line-height: 20px;
    border: none !important;
    padding: 10px 6px;
    color: #fff;
    font-size: 13px;
}
div#calendar ul.dates li a{
    font-size:11px;
}
:focus{
    outline:none;
}

div.clear{
    clear:both;
}
div#calendar .event {
    clear: both;
    display: block;
    font-size: 13px;
    border-radius: 4px;
    padding: 5px;
    margin-top: 40px;
    margin-bottom: 5px;
    line-height: 14px;
    background: #e4f2f2;
    border: 1px solid #ccc;
    color: #ccc;
    text-decoration: none;
    text-align: center;
}
div#calendar .date {
    text-align: center;
    margin-bottom: 5px;
    padding: 0 4px;
    background: #213752;
    color: #fff;
    width: 25px;
    border-radius: 50%;
    float: right;
}
div#calendar .days li {
    height: 180px;
}
div#calendar .other-month {
    background: #f5f5f5;
    color: #666;
}
div#calendar .days li:hover {
    background: #d3d3d3;
}

div#calendar .event-desc {
    color: #666;
    margin: 3px 0 7px 0;
    text-decoration: none;
    font-size:14px;
}
div#calendar .event-time {
    font-size: 13px;
    line-height: 14px;
    color: #cb7228;/*#009aaf*/
    margin-top:5px;
}
@media (max-width: 768px) {
    div#calendar .weekdays, div#calendar .other-month {
        display: none;
    }

    div#calendar li {
        height: auto !important;
        border: 1px solid #ededed;
        width: 100%;
        padding: 10px;
        margin-bottom: -1px;
    }

    div#calendar .date {
        float: none;
    }
    div#calendar .event{
        margin-top:5px;
    }
    div#calendar h1{
        font-size:18px;
        padding: 0px 40px;
    }
}