/* CSS Part of the hack to get an event on DOM insertion, see JS section
 for more details*/
@keyframes nodeInserted {  
    from {  
        outline-color: #fff; 
    }
    to {  
        outline-color: #000;
    } 
}

a#videoClickToPlayLink {
    animation-duration: 0.01s;
    animation-name: nodeInserted;
}
