#video-container {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10000;
}

#video-overlay {
    display: none;
    
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9999;
    
    background-color: #000000;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

#video-container {
    display: none;
    
    position: fixed;
    top: 100px;
    left: 100px;
    background-color: #000000;
    border: 2px solid #000000;
    box-shadow: 2px 2px 15px #000000;
    
    overflow: hidden;
}

#video-body {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

#video-body:before {
    content: '';
    
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    
    background: #000000 url('/images/ajax-loader-yellow-on-black.gif') no-repeat center center;
}

#video-next-button, #video-previous-button {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 130px;
    z-index: 200;
    opacity: 0.3;
}

#video-next-button span, #video-previous-button span {
    position: absolute;
    top: 100px;
    left: 0px;
    right: 0px;
    background-color: white;
    padding: 1em 0;
    text-align: center;
}

#video-next-button:hover, #video-previous-button:hover {
    opacity: 1;
}

#video-next-button {
    right: 0px;
}

#video-previous-button {
    left: 0px;
}

#video-previous-button:hover {
    opacity: 1 !important;
}

#video-close {
    position: fixed;
    width: 40px;
    height: 40px;
    
    background: #000000 url('/images/icons/close-video-icon.png') no-repeat center center;
}

#video-close:hover {
    background-color: #222222;
}