/*
A red, white, and grey theme.

AUTHOR: Geoffrey Grosenbach http://nubyonrails.com
*/

.calendar {
    margin: auto;
    font-size: 13px;
    font-weight: normal;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.calendar thead {
    text-align: center;
}
.calendar thead a {
    color: #990000;
    text-decoration: none;
}
.calendar thead a:hover {
    color: #FFFFFF;
    background-color: #990000;
}
.monthName th {
    font-weight: normal;
    text-align: right;
    padding-top: 1em;
    padding-bottom: 0.7em;
    text-align: center;
}

.dayName th {
    font-size: 0.9em;
    padding-top: 0.6em;
    padding-bottom: 0.3em;
    background-color: #303030;
    color: white;
    text-align: center;
}

.otherMonth, .day, .specialDay {
    text-align: center;
    border-right: 1px solid #bbbbbb;
    border-bottom: 1px solid #bbbbbb;
}
.otherMonth {
    color: #cccccc;
    padding: 1.5em 2em;
}
.weekendDay {
    background-color: #eeeeee;
}
.day {
    padding: 2em 2.5em;
}
.specialDay a, .specialDay a:visited, .specialDay a:hover {
    background-color: #809FBF;
    padding: 2em 2.5em;
    color: white;
    text-decoration: underline;
    display: block;
}
.specialDay a:hover {
    text-decoration: none;
    color: white;
    background-color: #003366;
}
.today {
    background-color: #1e90ff;
    color: white;
}

