* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
body {
    margin: 0;
    padding: 5px;
    background: #f0f0f0;
    font-family: Tahoma,Geneva,sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1;
}
h1 {
    margin: 10px 0 0;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    text-align: center;
}
ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main {
    width: 308px;
    padding: 3px;
}
.main .main-inner {
    padding: 10px;
    border: 1px solid #ccc;
}
.search {
    position: relative;
}
.search input[type="text"] {
    display: block;
    width: 100%;
    padding: 0 60px 0 10px;
    border: 1px solid #ccc;
    background: #ccc;
    outline: 0;
    font-size: 14px;
    line-height: 30px;
    color: #333;
}
.search input[type="submit"] {
    display: block;
    position: absolute;
    top: 2px;
    right: 2px;
    border: 0;
    background: #fc0;
    outline: 0;
    font-size: 14px;
    line-height: 26px;
    color: #333;
    cursor: pointer;
    transition: 0.15s ease background-color, 0.15s ease color;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.search input[type="submit"]:hover {
    background: #fff;
    color: #333;
}
.logo {
    margin: 10px 0 0;
    text-align: center;
}
.logo a {
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    font-size: 24px;
    line-height: 40px;
}
.logo a span {
    float: left;
    padding: 0 5px;
    font-size: 18px;
    line-height: 40px;
    width: auto;
    height: auto;
}
.logo a span:first-child {
    border: 1px solid #2b2b2b;
    border-radius: 5px 0 0 5px;
    background: #000;
    color: #fff;
}
.logo a span:last-child {
    border: 1px solid #fff;
    background: #fff;
    color: #333;
}
.wrapper,
.width-wrap {
    width: 308px;
    margin: 0 auto;
}
.wrapper .thumb {
    width: 312px;
    padding: 5px;
}
.wrapper .thumb .thumb-container {
    display: block;
    position: relative;
    border: 1px solid #ccc;
}
.wrapper .thumb .thumb-container img {
    display: block;
    width: 100%;
}
.wrapper .thumb .thumb-container span {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 30px;
    padding: 0 5px;
    background: #ccc;
    font-size: 16px;
    line-height: 30px;
    color: #333;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px #fff;
    transition: 0.15s ease background-color;
}
.wrapper .thumb.category .thumb-container span {
    font-size: 18px;
}
.wrapper .thumb .thumb-container:hover span {
    background: #fc0;
}
.wrapper .thumb .thumb-container em {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 5px;
    background: rgba(0,0,0,0.3);
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-style: normal;
    text-shadow: 0 1px 3px #000;
    transition: 0.15s ease opacity;
}
.wrapper .thumb .thumb-container:hover em {
    opacity: 0;
}
.menu {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
.menu li {
    display: inline-block;
    margin-bottom: 5px;
}
.menu li a {
    display: block;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #fc0;
    background: #fc0;
    color: #333;
    font-size: 16px;
    line-height: 30px;
    transition: 0.15s ease opacity, 0.15s ease border-color, 0.15s ease background-color, 0.15s ease color;
}
.menu li.active a {
    cursor: default;
}
.menu li.active a,
.menu li a:hover {
    opacity: 0.75;
    border: 1px solid #fff;
    background: #fff;
    color: #000;
}
.spot {
    text-align: center;
}
.spot .spot-container {
    display: inline-block;
    width: 302px;
    height: 252px;
    border: 1px solid #ccc;
}
.pagination {
    margin: 20px 0;
    text-align: center;
}
.pagination li {
    display: inline-block;
}
.pagination li a {
    background: #ccc;
    display: block;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0 3px;
    color: #fff;
    text-shadow: 0 1px 3px #000;
    transition: 0.15s ease background-color;
}
.pagination li a:hover,
.pagination li.current a {
    background: #fc0;
}
.toplist-section {
    margin: 20px 0;
}
.toplist-section .width-wrap:after {
    content: '';
    display: block;
    clear: both;
}
.toplist {
    float: left;
    width: 100%;
}
.toplist li {
    padding: 5px;
}
.toplist li a {
    background: #ccc;
    display: block;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
    line-height: 40px;
    color: #333;
    transition: 0.15s ease background-color;
}
.toplist li a:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 5px -1px 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 7px;
    border-color: transparent transparent transparent #333;
}
.toplist a:hover {
    background-color: #fc0;
}
header {
    margin-bottom: 10px;
}
header .width-wrap {
    display: table;
    width: 100%;
    max-width: 1150px;
}
header .logo {
    display: table-cell;
    text-align: left;
    vertical-align: top;
}
header .logo a {
    white-space: nowrap;
    display: block;
    letter-spacing: -10px;
    line-height: 36px;
}
header .logo a span {
    display: inline-block;
    float: none;
    letter-spacing: 0;
    font-size: 14px;
}
header .logo a span:last-child {
    border-radius: 0 5px 5px 0;
}
header .search {
    display: table-cell;
    width: 100%;
    vertical-align: top;
    padding: 0 0 0 10px;
}
header .search input[type="text"] {
    line-height: 40px;
}
header .search input[type="submit"] {
    line-height: 38px;
}
.video-section {
    margin: 0 0 30px 0;
}
.video-section {
    margin: 0 0 30px 0;
}
.video-section .width-wrap {
    position: relative;
    width: 100%;
    max-width: 1150px;
}
.video-section .video-side {

}
.video-section .video-side h1 {
    text-align: left;
    font-size: 21px;
    margin: 10px 0;
}
.video-section .video-side .categories {
    margin: 10px 0;
}
.video-section .video-side .categories li {
    display: inline-block;
    margin-bottom: 3px;
}
.video-section .video-side .categories li a {
    background: #ccc;
    display: block;
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
    color: #333;
    transition: 0.15s ease background-color;
}
.video-section .video-side .categories li a:hover {
    background: #fc0;
}
.video-section .side-spots {
    text-align: center;
}
.video-section .side-spots .side-spot {
    display: inline-block;
    margin-bottom: 10px;
}
.video-section .side-spots .side-spot:nth-child(2) {
    display: none;
}
.about-us-section {
    margin: 20px 0;
}
.about-us-section .about-us {
    font-size: 14px;
    line-height: 20px;
    color: #888;
    text-align: justify;
}
footer {
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    background: #ccc;
    border-top: 1px solid #ccc;
}
    footer a {
        display: inline-block;
        font-size: 14px;
        line-height: 20px;
        color: #333;
        text-decoration: underline;
        transition: 0.15s ease color;
    }
        footer a:hover {
            color: #fff;
        }

@media (min-width: 626px) {
    .wrapper,
    .width-wrap {
        width: 624px;
    }
    .toplist {
        width: 50%;
    }
    header .logo a span {
        font-size: 18px;
    }
    .video-section .side-spots .side-spot:nth-child(2) {
        display: inline-block;
    }
}
@media (min-width: 934px) {
    .wrapper,
    .width-wrap {
        width: 936px;
    }
}
@media (min-width: 1242px) {
    .wrapper,
    .width-wrap {
        width: 1248px;
    }
    .toplist {
        width: 25%;
    }
    .video-section .video-side {
        margin-right: 310px;
    }
    .video-section .side-spots {
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
    }
}
@media (min-width: 1550px) {
    .wrapper,
    .width-wrap {
        width: 1560px;
    }
}
@media (min-width: 1858px) {
    .wrapper,
    .width-wrap {
        width: 1872px;
    }
}

.fluid_video_wrapper {
    width: 100% !important;
    height: auto !important;
}