﻿/*******************************Calendar Top Navigation*********************************/


div#calendar ul {list-style-type: none;}


/* Month header */
div#calendar div.month {
    padding: 10px 25px;
    width: 100%;
    background: #36425c;
}

/* Month list */
div#calendar div.month ul {
    margin: 0;
    padding: 0;
}

div#calendar div.month ul li {
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Previous button inside month header */
div#calendar div.month .prev {
    float: left;
    padding-top: 10px;
}

/* Next button */
div#calendar div.month .next {
    float: right;
    padding-top: 10px;
}

/* Weekdays (Mon-Sun) */
div#calendar ul.weekdays {
    margin: 0;
    padding: 10px 0;
    background-color:#ddd;
}

div#calendar ul.weekdays li {
    display: inline-block;
    width: 13.6%;
    color: #666;
    text-align: center;
}

/* Days (1-31) */
div#calendar ul.days {
    padding: 10px 0;
    background: #eee;
    margin: 0;
}

div#calendar ul.days li {
    list-style-type: none;
    display: inline-block;
    width: 13.6%;
    text-align: center;
    margin-bottom: 5px;
    font-size:18px;
    color:#777;
}

/* Highlight the "current" day */
div#calendar ul.days li.active {
  
    background: #3aaa64;
    color: white !important
}

