/* The date entry */
.blogDate {
}
#bloglendar {
  padding-bottom: 5px;
}
/* The bloglendar table */
#bloglendar table {
    width:117px;
    font-size: 8pt;
    font-family: Arial;
    color: black;
    border: 1px solid #efe0b6;
    border-collapse: collapse;
    background: #e6e6e6;
}

#bloglendar thead th, #bloglendar tbody td {
    text-align: center;
    font-weight: normal;
    padding: 0px;
}
/* The month */
#bloglendar thead th.month {
    margin: 0;
    background: #efe0b6;/* #9d0; */
}

/* The weekdays */
#bloglendar thead th.weekday {
    background: #f5eacb;/* #dea; */
}

/* All days (including empty days) */
#bloglendar tbody td {
    background: #f3f3f3;
    border: 1px #fff solid;
    margin: 0;
}

/* Active days */
#bloglendar tbody td.activeday {
    background: white !important;/* #9d0 #ffcc66*/ 
}

/* All links */
#bloglendar tbody td a {
    display: block;
}

/* Active links */
#bloglendar tbody td.activeday a {
    color: #69c !important;/* #ff6633 */
    text-decoration: none !important;
}

/* Past days */
#bloglendar tbody td.pastday {
    background-color: white;
    color: black;
}

/* Current day */
#bloglendar tbody td.currentday {
    background-color: #999 !important;
    color: white !important;
}

#bloglendar tbody td.currentday a {
    color: #9cf !important;
}

/* Future days */
#bloglendar tbody td.futureday {
    background-color: #eee;
    color: #ccc;
}
