/* If you want you can use font-face */
/*@font-face {
    font-family: 'BebasNeueRegular';
    src: url('BebasNeue-webfont.eot');
    src: url('BebasNeue-webfont.eot?#iefix') format('embedded-opentype'), url('BebasNeue-webfont.woff') format('woff'), url('BebasNeue-webfont.ttf') format('truetype'), url('BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}*/

.container {
    display:inline-block;
    /*width: 1000px;*/
    margin: 0 auto;
    overflow: hidden;
}

.clock {
    display:inline;
    -webkit-touch-callout: none; /*prevent highlighting of title when selected*/
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1000px;
    height: 20px;
    font-weight:bold;
    /*margin: 0 auto;
    padding: 30px;
    border: 1px solid #333;*/
    color: #000;
}

    .clock ul {
        /*width: 800px;*/
        /*margin: 0 auto;*/
        padding: 0px;
        list-style: none;
        text-align: center;
    }

        .clock ul li {
            display: inline;
            font-size: 15px;
            text-align: center;
            font-family: 'BebasNeueRegular', Arial, Helvetica, sans-serif;
            /*text-shadow: 0 0 5px #00c6ff;*/
        }

#Date {
    display:inline;
    font-family: 'BebasNeueRegular', Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-align: center;
    /*text-shadow: 0 0 5px #00c6ff;*/
}

#point {
    font-size:18px;
    display:inline;
    position: relative;
    -moz-animation: mymove 1s ease infinite;
    -webkit-animation: mymove 1s ease infinite;
    padding-left: 1px;
    padding-right: 1px;
}

/* Simple Animation */
@-webkit-keyframes mymove {
    0% {
        opacity: 1.0;
        text-shadow: 0 0 20px #00c6ff;
    }

    50% {
        opacity: 0;
        text-shadow: none;
    }

    100% {
        opacity: 1.0;
        text-shadow: 0 0 20px #00c6ff;
    }
}

@-moz-keyframes mymove {
    0% {
        opacity: 1.0;
        text-shadow: 0 0 20px #00c6ff;
    }

    50% {
        opacity: 0;
        text-shadow: none;
    }

    100% {
        opacity: 1.0;
        text-shadow: 0 0 20px #00c6ff;
    }
}
