/* You can change colors, font face name, font sizes, and borders to format
   the look and feel of the calendar though the following css declarations
   Dont change name (.name) only change the values inside the { }
*/
.year {
    color:#000000;
    font-weight:bold;
    background-color:#999999;
    padding-bottom:7px;
    padding-top:3px;
}
.month {
    color:#000000;
    font-weight:bold;
    background-color:#999999;
    padding-bottom:7px;
    padding-top:3px;
}
.days_name_sunday {
    color:#990000;
    font-weight:bold;
    background-color:#EFEFEF;
}
.days_sunday {
    color:#990000;
    font-weight:bold;
    background-color:#FFFFFF;
    cursor:pointer;
}
.days_name_saturday {
    color:#990000;
    font-weight:bold;
    background-color:#EFEFEF;
}
.days_saturday {
    color:#990000;
    font-weight:normal;
    background-color:#FFFFFF;
    cursor:pointer;
}
.days_name {
    color:#777777;
    font-weight:bold;
    background-color:#EFEFEF;
}
.days {
    color:#777777;
    font-weight:normal;
    background-color:#FFFFFF;
    cursor:pointer;
}
#cal_div td.today {
    color:#000099;
    font-weight:bold;
    cursor:pointer;
    border:2px SOLID #999999;
}
#cal_div {
    padding:0px;
    margin:0px;
    font-family:Helvetica,Arial;
    font-size:12px;
}

#cal_div td {
    border:1px SOLID #CCCCCC;
    padding:5px;
    margin:0px;
}

a.nav {
    text-decoration:none;
    font-weight:bold;
    color:#0066CC;
    font-size:15px;
}
a.nav:hover {
    text-decoration:underline;
    font-weight:bold;
    color:#FF0000;
    font-size:15px;
}

.btn {
    background-color:#CCCCCC;
    color:#000000;
    border:1px SOLID #777777;
}

