﻿body {
    background-color: #F4F4F4
}

img.bg {
    /* Set rules to fill background */
    z-index: 0;
    min-height: 100%;
    min-width: 1024px;
    /* Set up proportionate scaling */
    width: 100%;
    height: auto;
    /* Set up positioning */
    position: fixed;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
    img.bg {
        left: 50%;
        margin-left: -512px; /* 50% */
    }
}

.Calendar {
    border: 1px solid #fff;
}

    .Calendar img {
        border: 1px solid #808080;
    }

    .Calendar .Title {
        background-color: #808080;
        border: none;
    }

        .Calendar .Title td {
            font-family: verdana;
            font-size: 11px;
            font-weight: bold;
            color: White;
            padding-top: 0px;
            padding-bottom: 0px;
            border: none;
        }

    .Calendar .DayHeader {
        background-color: #808080;
        color: White;
        font-family: Verdana;
        font-size: 11px;
        text-align: center;
        border-top: solid 1px #FFFFFF;
        padding: 2px;
        font-weight: normal;
        height: 10px;
    }

    .Calendar .Day {
        width: 100px;
        height: 40px;
        text-align: center;
        vertical-align: top;
        font-family: Verdana;
        font-size: 11px;
        color: Black;
        background-color: #FFFFFF;
        border: solid 1px #e1d0d0;
        padding: 2px;
        font-weight: 400;
    }

    .Calendar .OtherMonthDay {
        background-color: #f2f2f2;
    }
