
/* Clock style sheet */

    /* Outer div */
    .Clock {
        margin: 0.5em 0 0 0;
        font: bold 12px arial, sans;
        width: 200px;
        background: url(images/clock/clock-right.jpg) no-repeat right center;
    }

    /* left div (month/dayname/day) */
    .Clock_date {
        float: left;
        width: 50%;
        background: url(images/clock/clock-left.jpg) no-repeat left center;
        color: #fff;
        height: 40px;
    }
    

    /* for month/dayname */
    .Clock_month {
        padding: 0.5em 3% 0 14px;
        display: block;
        float: left;
        line-height: 13px;
    }

    /* for day */
    .Clock_day {
        display: block;
        font-size: 25px;
        float: right;
        line-height: 35px;
        margin-right: 5px;
        padding: 0 2%;

        text-align: center;
    }

    /* for time (hh:mm) */
    .Clock_time {
        height: 40px;
        text-align: center;
        font-size: 25px;
        line-height: 35px;
        padding: 0 3%;
    }
