/* Style rules for textbox widgets */
.textwidget, #footer .footer-item .textwidget {
    overflow: hidden;
  
}



table#wp-calendar {
    /*Global style rules for #wp-calendar */
    width:100%;
}

table#wp-calendar caption{
    /* Style Rules for month/year table caption heading on sidebar calendar.*/
    font-weight: bold;
    text-align:center;
    background: #000;
    color: #fff;
    
    
}

table#wp-calendar thead tr th {
    /*Style rules for days of the week on the calendar */
    background: #FF0000;
    color: #FFF;
    
}

table#wp-calendar tbody tr {
    /*Style rules for numbered days of the month on the calendar*/
    background: #FFE;
}

table#wp-calendar td#today{
    /*Style rules targeting the calendar entry for the current day*/
    background: #ffc;
    border: 1px solid;    
}

table#wp-calendar td a {
    /*Style rule targeting any calender entries for a day of the month with a hyperlink in them*/
    text-decoration:underline;
    font-weight: bold;
}


table#wp-calendar td a:hover {
    /*Take underline text decorarion from the hyperlink-text in calendar entry*/
    text-decoration: none;
    
}