







 /* Calendar elements - used in the calendar rendering */

div.container {
/* deprecate? */
}

div.day {
    background-color: #FFFFBB;
    border: 1px solid Black;
    padding: 0.2em;
    visibility: hidden;
    width: 12em;
    z-index: 2;
}

div.date {
/* deprecate? */
}

  
table.calendar {
    border: 1px solid #919b7e;
    text-align: right;
}

table.calendar a {
    text-decoration: none;
    color: #0A2873;
}

table.calendar a:hover {
    text-decoration: none;
}

table.calendar th {
    background-color: #FFFFFF;
    color: #0A2873;
    font-weight: bold;
    text-align: center;
}

table.calendar td {
    width: 1.5em;
    padding: 2px;
}

table.calendar td.weekdays {
    background-color: #FFFFFF;
    border: 1px solid #919b7e;
    border-style: solid none;
    text-align: center;
}

table.calendar td.event {
    background-color: #FFFFFF;
    font-weight: bold;
}

table.calendar td.noevent {
    background-color: transparent;
}

table.calendar td.othermonth {
/* deprecate? */
    background-color: #FFFFFF;
    border: 1px solid #8CACBB;
    vertical-align: bottom;
}

table.calendar td.holiday {
/* deprecate? */
    background-color: #CF6060;
    border: 1px solid #8CACBB;
}

table.calendar td.todayevent {
    background-color: #FFFFFF;
    border: 0px solid #336699;
    font-weight: bold;
}

table.calendar td.todaynoevent {
    border-collapse: collapse;
    border: 2px solid #FFA500;
}


