/* The bloglendar table */
#bloglendarHere table {
    font-size: 0.7em;
    font-family: "Verdana", "Arial", "Helvetica", sans-serif;
    color: #000000;
    border: 1pt #999999 solid;
    border-collapse: collapse;
    background-color: #FFFFCC;
    /* line-height: 150%; */
}

/* The month */
#bloglendarHere thead th.month {
    margin: 0em;
    padding: 0.1em;
    text-align: center;
    font-weight: bold;
    background-color: #99dd00;
}

/* The weekdays */
#bloglendarHere thead th.weekday {
    font-weight: normal;
    color: #336699;
    background-color: #ddeeaa;
}

/* All days (including empty days) */
#bloglendarHere tbody td {
    /* background-color: #f3f3f3;*/
    background-color: #FFFFFF; 
    border: 1pt #999999 solid;
    margin: 0em;
    padding: 0.1em;
}

/* Inactive days */
#bloglendarHere tbody td.day {
    /* background-color: #dddddd; */
    background-color: #f3f3f3;
}

/* Active days */
#bloglendarHere tbody td.activeday {
    font-weight: bold;
    background-color: #FFFFCC; 
/*#eeff00;*/
    cursor: pointer;
}

/* Active links */
#bloglendarHere tbody td.activeday a {
    color: #FF9900;
    /*color: #000000;*/
    text-decoration: none;
}