/******************

Color scheme

******************/

html {
    background-color: #fff;
}

body {
    color: #363636;

    background: #eee;
    background: -webkit-radial-gradient(#fff, #eee 25%, #ddd 100%);
    background: -o-radial-gradient(#fff, #eee 25%, #ddd 100%);
    background: -ms-radial-gradient(#fff, #eee 25%, #ddd 100%);
    background: -moz-radial-gradient(#fff, #eee 25%, #ddd 100%);
    background: radial-gradient(#fff, #eee 25%, #ddd 100%);
}

#subscribe-email {
    border: 1px solid #aaa;
}

#countdown > div {
    text-shadow: none;
}

.countdown-number-container {
    color: #fff;
    border-color: #888;

    background: #888;
    background: -moz-linear-gradient(top, #888, #aaa);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #aaa), color-stop(100%, #888));
    background: -webkit-linear-gradient(top, #888, #aaa);
    background: -ms-linear-gradient(top, #888, #aaa);
    background: -o-linear-gradient(top, #888, #aaa);
    background: linear-gradient(top, #888, #aaa);

    -webkit-box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.2);
    -moz-box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.2);
}