.video-time {
    color: #fff;
    background: #000;
    opacity: 0.75;
    position: absolute;
    bottom: 3px;
    right: 3px;
    padding: 2px 3px;
}

.video-name {
    color: #fff;
    background: #000;
    opacity: 0;
    display: block;
    width: 200px;
    line-height: 150px;
    text-align: center;
    transition: opacity .25s ease-out;
}

a.video-ref:hover .video-name {
    opacity: 0.7;
}

a.video-ref {
    display: block;
    width: 200px;
    height: 150px;
    opacity: 0.8;
    transition: opacity .12s ease-out;
}

a.video-ref:hover {
    opacity: 1;
}

#video-view {
    display: none;
    position: absolute;
    z-index: 100;
    top: 80px;
    margin-left: 50%;
}

#video-container {
    width: 854px;
    height: 480px;
}
    
#video-container div {
    width: 854px;
    height: 480px;
    padding: 0;
}

#v-top-left {
    background: url(/static/img/v-top-left.png) no-repeat;
}

#v-bottom-left {
    background: url(/static/img/v-bottom-left.png) no-repeat 0 100%;
}

#v-bottom-right {
    background: url(/static/img/v-bottom-right.png) no-repeat 100% 100%;
}

#v-top-right {
    background: url(/static/img/v-top-right.png) no-repeat 100% 0;
    position: relative;
}

div#v-top-center {
    background: url(/static/img/v-top-center.png) repeat-x;
    margin: 0 189px 0 237px;
    width: 428px;
    position: absolute;
}

div#v-bottom-center {
    background: url(/static/img/v-bottom-center.png) repeat-x 0 100%;
    margin: 0 189px 0 237px;
    width: 428px;
    position: absolute;
}

div#v-left-center {
    background: url(/static/img/v-left-center.png) repeat-y;
    margin: 161px 0 0;
    height: 245px;
    position: absolute;
}

div#v-right-center {
    background: url(/static/img/v-right-center.png) repeat-y 100% 0;
    margin: 161px 0 0;
    height: 245px;
    position: absolute;
}

a.close-btn {
    display: block;
    width: 31px;
    height: 16px;
    background: url(/static/img/close.gif) no-repeat;
}

a.close-btn:hover {
    background: url(/static/img/close_o.gif) no-repeat;
}

#iframe-container {
    position: absolute;
    left: 31px;
    top: 31px;
}

#video-container a.close-btn {
    position: absolute;
    top: 6px;
    right: 57px;
}