@charset "utf-8";
/* CSS Document */

.background {
    border-style: none;
    width: 50px;
    height: 75px;
}
.numbers {
    border-style: none;
    background-color: #292929;
    padding: 12px 0px 0px 0px;
    margin: 0px 0px 0px 5px;
    width: 40px;
    height: 30px;
    text-align: center; 
    font-family: Arial; 
    font-size: 34px;
    font-weight: bold;    /* options are normal, bold, bolder, lighter */
    color: #FFFFFF;     /* change color using the hexadecimal color codes for HTML */
}
.titleclock {    /* the styles below will affect the title under the numbers, i.e., “Days”, “Hours”, etc. */
    border: none;    
    padding: 0px 0px 0px 5px;
    margin: 0px 3px;
    width: 62px;
    text-align: left; 
    font-family: Arial; 
    font-size: 12px; 
    font-weight: bold;    /* options are normal, bold, bolder, lighter */
    color: #999999;    /* change color using the hexadecimal color codes for HTML */
    background-color: #000000;  
}
.top-text {    /* the styles below will affect the title above the numbers,*/
    border: none;    
    padding: 0px 0px 0px 5px;
    margin: 0px 3px 0px 0px;
    width: 420px;
    text-align: left; 
    font-family: Arial; 
    font-size: 15px; 
    font-weight: bolder;    /* options are normal, bold, bolder, lighter */
    color: #FFFFFF;    /* change color using the hexadecimal color codes for HTML */
    background-color: transparent;
}
#form {    /* the styles below will affect the outer border of the countdown timer */
    width: 420px;
    height: 130px;
    border-style: none;    /* options are none, dotted, dashed, solid, double, groove, ridge, inset, outset */
    border-width: 2px;
    border-color: #666666;  /* change color using the hexadecimal color codes for HTML */ 
    background-color: transparent;
    padding: 15px 0px 0px 0px;
    margin: 20px 0px 0px 0px;
    position: absolute;   /* leave as "relative" to keep timer centered on your page, or change to "absolute" then change the values of the "top" and "left" properties to position the timer */
    top: 0px;            /* change to position the timer */
    left: 341px;            /* change to position the timer; delete this property and it's value to keep timer centered on page */
}
.line {
    border-style: none;
    width: 62px; 
    height: 2px;
    z-index: 15;
}