body {
    margin: 5px;
    padding: 5px;
    background: #000;
    color: #8c8c8c;
    font-family: Verdana, Tahoma, Arial, sans-serif;
    font-size: 10pt;
}

h1 {
    font: 4em normal Arial, Helvetica, sans-serif;
    padding: 20px;
    margin: 0;
    text-align:center;
}

p {
    padding: 3px;
    margin: 0px;
}

a:link, a:active {
    color: #f83;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #ffaa6e;
}

.myheader {
    text-align: center;
    color: #f83;
    padding: 0px;
    font-weight: bold;
}

.round {
    border: 1px;
    box-shadow: 0 0 20px #f83; 
    border-radius: 10px;
}

#cam {
    height: 51px;
    text-align: center;
    margin-top: 15px;
}

img {
    margin: 10px;
}

.container {
    width: 960px;
    margin: 0 auto;
    overflow: hidden;
}

.clock {
    width: 800px;
    margin: 0 auto;
    padding: 30px;
    color: #fff;
}

#Date {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 36px;
    text-align: center;
    text-shadow: 0 0 20px #f83;
}

ul {
    width: 800px;
    margin: 0 auto;
    padding: 0px;
    list-style: none;
    text-align: center;
}

ul li {
    display: inline;
    font-size: 10em;
    text-align: center;
    font-family: 'Verdana', sans-serif;
    text-shadow: 0 0 20px #f83;
}

#point {
    position: relative;
    -moz-animation: mymove 1s ease infinite;
    -webkit-animation: mymove 1s ease infinite;
    padding-left: 10px;
    padding-right: 10px;
}

@-webkit-keyframes mymove {
    0% {
        opacity: 1.0;
        text-shadow: 0 0 20px #f83;
    }
    50% {
        opacity: 0;
        text-shadow: none;
    }
    100% {
        opacity: 1.0;
        text-shadow: 0 0 20px #f83;
    }	
}

@-moz-keyframes mymove {
    0% {
        opacity: 1.0;
        text-shadow: 0 0 20px #f83;
    }
    50% {
        opacity: 0;
        text-shadow: none;
    }
    100% {
        opacity: 1.0;
        text-shadow: 0 0 20px #f83;
    }	
}