

@-webkit-keyframes blink {
    0% { opacity: 1 }
    50% { opacity: 0 }
    100% { opacity: 1 }
}

@-moz-keyframes blink {
    0% { opacity: 1 }
    50% { opacity: 0 }
    100% { opacity: 1 }
}

@-ms-keyframes blink {
    0% { opacity: 1 }
    50% { opacity: 0 }
    100% { opacity: 1 }
}

@keyframes blink {
    0% { opacity: 1 }
    50% { opacity: 0 }
    100% { opacity: 1 }
}

* {
    margin: 0px;
    padding: 0px;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
}

#container {
    cursor: pointer;
    font-size: 11px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-repeat: no-repeat;
    background-position: right top;
    z-index: 10;
}

#cta {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 300px;
	height: 32px;
    background: url('cta.png') no-repeat center center;
    -webkit-animation: blink .5s 5 17.5s;
    -moz-animation: blink .5s 5 17.5s;
    -ms-animation: blink .5s 5 17.5s;
    animation: blink .5s 5 17.5s;
}

#media-video {
    width: 300px;
    height: 169px;
    background: #000;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100000;
    cursor: pointer;
}


/******CUSTOM VIDEO CONTROLS******/

#media-controls {
    z-index: 1000;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 5px;
    margin-top: 1px;
}

button {
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    background: transparent url('buttons.png') no-repeat 0 0;
}

button:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    /* For IE8 and earlier */
}

.pause {
    background-position: -30px 0;
}

.mute {
    background-position: -90px 0;
}

.unmute {
    background-position: -60px 0;
}

.replay {
    background-position: -120px 0;
}

progress {
    color: #000;
    font-size: 8px;
    width: 100%;
    height: 4px;
    border: none;
    margin-right: 5px;
    background: #434343;
}

#play-pause-button {
    position: relative;
    left: 230px;
    top: 165px;
}

#mute-button {
    position: relative;
    left: 230px;
    top: 165px;
}

#replay-button {
    position: inherit;
    width: auto;
    top: 70px;
    left: 110px;
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    padding-left: 30px;
    color: #ffffff;
    font-size: small;
    display: none;
}

progress::-webkit-progress-bar {
    background-color: grey;
}

progress::-moz-progress-bar {
    background-color: red;
}

progress::-webkit-progress-value {
    background-color: red;
}


/*IE*/

progress::-ms-fill {
    background-color: red;
}
