/* 
    Document   : screen.css
    Created on : Jun 18, 2009, 3:02:00 PM
    Author     : Jeff
    Description:
        Calendar Screen Stylesheet
*/

table.calendar {
    margin: 0 0 15px 0;
    width: 100%;
    border: 1px solid #ddd;
    background-color: #640000;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

thead th {
    background-color: #480001;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

table.calendar th {
    font-weight: bold; font-size: 12px; text-align: center;
    color: #eee;
}

table.calendar td {
    padding: 6px 4px 0 4px;
    font-size: 10px;
    border: 1px solid #ddd;
    text-align: right; vertical-align: bottom;
    background: url(../images/td.png) 0% 50% repeat-x;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

table.calendar td.today {
    background: url(../images/today.png) 0% 50% repeat-x;
    color: #fff;
}

table.calendar td.empty {
    background: none;
}

table.calendar th a {
    text-decoration: none;
    color: #eee;
}

table.calendar td a {
    text-decoration: underline;
    font-weight: bold;
    color: #480001;
}

table.calendar td.today a {
    color: #fff;
}

table.calendar td a span {
    display: none;
}

