#calendar {
    font-family: Arial, Verdana, Helvetica, sans-serif;
}

#calendar table {
    border-top:1px solid gray;
    width: 468px;
    border-collapse: collapse;
}

#calendar td {
    border: 1px solid gray;
    padding: 0%;
}

#calendar .link a, #calendar #prevMonth a , #calendar #nextMonth a {
    text-decoration: none;
    color: black;
}

#calendar #desc {
    width: 50%;
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
    text-transform: capitalize;
}

#calendar #prevMonth {
    width: 25%;
    vertical-align: middle;
    text-align: right;
    
    font-weight: bold;
    font-size: 24px;
    padding-right: 5px;
}

#calendar #nextMonth {
    width: 25%;
    vertical-align: middle;
    text-align: left;

    font-weight: bold;
    font-size: 24px;
    padding-left: 5px;
}

#calendar #entries td {
    width: 14%;
    background-color: #ffffff;
}

#calendar #entries .header {
    vertical-align: middle;
    text-align: center;
    background-color: #666666;
    font-weight: bold;
    font-size: 10px;
    padding-top: 2px;
    color: white;
    text-transform: capitalize;
    background-image: url(../images/calendar/day.png);
    background-repeat: no-repeat;
    background-position: top center;    
}

#calendar #entries .day {
    vertical-align: top;
    text-align: left;
    height: 70px;
    background-image: url(../images/calendar/todays_matches_bottom.png);
    background-position: -1px 100%;
    background-repeat: no-repeat;
}

#calendar #entries .today {
    background-color: lightblue;
    background-image: url(../images/calendar/today_pattern.png);
    background-repeat: repeat-y;
}
#calendar .today .link a{
    color:#FFFFFF;
}
#calendar #entries .empty {
    background-color: #DFDCD8;
    background-image: url(../images/calendar/empty_pattern.png);
    background-repeat: repeat;
}

#calendar #entries .day .header {
    background-color: #AAAAAA;
    width: 100%;
    font-size: 12px;
    padding-top: 1px;
    background-image: url(../images/calendar/number_of_day.png);
    background-repeat: no-repeat;
    background-position: top center;
}

#calendar #entries .day .link {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
}