/*video_box----------------------------------*/
#video_mask {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: #666;
    display: none;
    background-color:rgba(0, 0, 0, 0.5);
}

#video_box {
    position: absolute;
    margin: 0 auto;
    /*top: 80px;*/
    top: 150px;
    left: 0;
    right: 0;
    /*width: 700px;*/
    width: 540px;
    max-width: 70%;
    background: #fff;
    /*padding: 20px;*/
    padding: 5px;
    margin: auto;
    z-index: 101;
    /*border-radius: 10px;*/
    border-radius: 5px;
    font-family: 'Segoe UI Light', sans-serif;
    box-shadow: 5px 5px 5px #444444;
}

#video_title {
    /*margin: 0 auto;*/
    /*padding: 10px;*/
    position: absolute;
    /*font-size: 20px;*/
    font-size: 18px;
    text-align: left;
    /*color: #666;*/
    color: #fff;
    /*text-shadow: 2px 2px 2px #ccc;*/
    z-index: 99998;
    top: 18px;
    left: 18px;

}

#video_content {
    position: relative;
    padding-bottom: 56.25%;
    /*padding-top: 5px;*/
    height: 0;
    overflow: hidden;
    /*background-color: #00a0ff;*/
}

#video_content iframe,
#video_content object,
#video_content embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9001;
}

#video_close {
    font-size: 12px;
    text-align: right;
    color: #444;
    /*background-color: #eee;*/
    text-shadow: 2px 2px 5px #ddd;
    cursor: pointer;
}
/*----------------------------------video_box*/