@charset "UTF-8";

@-webkit-keyframes fade_In_Element {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fade_In_Element {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade_In_Element {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fade_Out_Element {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes fade_Out_Element {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fade_Out_Element {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes slide_In_Right_Element {
    0% {
        left: 0px;
        opacity: 0; 
    }
    100% {
        left: 12px;
        opacity: 1; 
    }
}

@-moz-keyframes slide_In_Right_Element {
    0% {
        left: 0px;
        opacity: 0; 
    }
    100% {
        left: 12px;
        opacity: 1; 
    }
}

@keyframes slide_In_Right_Element {
    0% {
        left: 0px;
        opacity: 0; 
    }
    100% {
        left: 12px;
        opacity: 1; 
    }
}

@-webkit-keyframes slide_In_Left_Element {
    0% {
        left: 40px;
        opacity: 0; 
    }
    100% {
        left: 28px;
        opacity: 1;
    }
}

@-moz-keyframes slide_In_Left_Element {
    0% {
        left: 40px;
        opacity: 0; 
    }
    100% {
        left: 28px;
        opacity: 1;
    }
}

@keyframes slide_In_Left_Element {
    0% {
        left: 40px;
        opacity: 0; 
    }
    100% {
        left: 28px;
        opacity: 1;
    }
}

html,
body {
    background-color: transparent;
}

body,
button,
img {
    vertical-align: baseline;
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
}


/*video::-webkit-media-controls {
    display: none !important;
}

::-webkit-media-controls {
    display:none !important;
}

video::-webkit-media-controls-enclosure {
    display:none !important;
}*/

button {
    cursor: pointer;
}

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

.keyline {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #000000;
}

.clicktag {
    position: absolute;
    top: 0;
    left: 0;
    background: url("transparent-ie-fix.png") transparent repeat;
    cursor: pointer;
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
}

.loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -16px;
    margin-top: -16px;
    width: 32px;
    height: 32px;
    background-color: #000000;
}

#banner-container {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    width: 728px;
    height: 90px;
    background-color: transparent;
}

#state-initial {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 728px;
    height: 90px;
    background-color: #000000;
    /* TODO Make sure this is set to transparent for a transparent unit */
    overflow: hidden;
}

#video-1-container,
#video-1-container video{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 728px;
    height: 90px;
    background-color: transparent;
}

#image-sequence-1,
#image-sequence-1-image-container {
    position:absolute;
    top: 0;
    left: 0;
    width: 728px;
    height: 90px;
    background-color: transparent;
}

/* RESOLVE ELEMENTS */

#resolve {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 728px;
    height: 90px;
    background: transparent;
    opacity: 1;
}

#resolve-background {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 728px;
    height: 90px;
    background: url("TheMissingS2_728x90_BG.jpg") #000000 no-repeat;
    opacity: 0;
}

#logline-top-container{
    position: absolute;
    display: block;
    top: 31px;
    left: 16px;
    width: 189px;
    height: 13px;
    background: url("TheMissingS2_728x90_Logline1.png") transparent no-repeat;
    opacity: 0;
}

#logline-bottom-container{
    position: absolute;
    display: block;
    top: 47px;
    left: 30px;
    width: 228px;
    height: 13px;
    background: url("TheMissingS2_728x90_Logline2.png") transparent no-repeat;
    opacity: 1;
}
#cta-container{
    position: absolute;
    display: block;
    top: 39px;
    left: 488px;
    width: 220px;
    height: 50px;
    opacity: 0;
}

#cta-over-container{
    position: absolute;
    display: block;
    top: 39px;
    left: 488px;
    width: 220px;
    height: 50px;
    opacity: 0;
}

#tunein {
    position: absolute;
    display: block;
    top: 49px;
    left: 307px;
    width: 248px;
    height: 37px;
    opacity: 0;
}

.tunein_01_DDT {
    background: url("TheMissingS2_728x90_Tunein_01_DDT.png") transparent no-repeat;
}
.tunein_02_TOM {
    background: url("TheMissingS2_728x90_Tunein_02_TOM.png") transparent no-repeat;
}
.tunein_03_POST {
    background: url("TheMissingS2_728x90_Tunein_03_POST.png") transparent no-repeat;
}

.fade-in-transition {
    -webkit-animation: 800ms fade_In_Element 1 forwards ease-out;
    -moz-animation: 800ms fade_In_Element 1 forwards ease-out;
    animation: 800ms fade_In_Element 1 forwards ease-out;
}

.fade-out-transition {
    -webkit-animation: 500ms fade_Out_Element 1 forwards ease-out;
    -moz-animation: 500ms fade_Out_Element 1 forwards ease-out;
    animation: 500ms fade_Out_Element 1 forwards ease-out;
}

.slide-in-right-transition {
    -webkit-animation: 800ms slide_In_Right_Element 1 forwards ease-in;
    -moz-animation: 800ms slide_In_Right_Element 1 forwards ease-in;
    animation: 800ms slide_In_Right_Element 1 forwards ease-in;
}

.slide-in-left-transition {
    -webkit-animation: 800ms slide_In_Left_Element 1 forwards ease-in;
    -moz-animation: 800ms slide_In_Left_Element 1 forwards ease-in;
    animation: 800ms slide_In_Left_Element 1 forwards ease-in;
}