/* Bengin fix*/
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #000;
    font-family: 'Roboto',sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased
}

a {
    color: #000;
    text-decoration: none;
}

    a:hover {
        color: #0000ff
    }

ul, li {
    margin: 0;
    padding: 0;
    list-style: none
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    line-height: 1.4
}

p {
    margin: 0;
    padding: 0;
    color: #333
}

figure, figcaption, blockquote {
    margin: 0;
    padding: 0
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

::after, ::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

h1 {
    font-size: 20px
}

h2 {
    font-size: 18px
}

h3 {
    font-size: 16px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 16px
}
/* End fix*/


/* Begin pushbar mySidebar */
.pushbar_locked {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%
}

.pushbar {
    z-index: 99999;
    position: fixed;
    will-change: transform;
    overflow-y: auto;
    transition: transform 0.5s ease;
    will-change: transform;
    background: #fff
}

.pushbar_overlay {
    z-index: -999;
    position: fixed;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    will-change: opacity;
    opacity: 0;
    will-change: opacity;
    background: #3c3442
}

.pushbar_locked .pushbar_overlay {
    opacity: 0.8;
    z-index: 999;
    transition: opacity 0.5s ease
}

.pushbar.from_left {
    top: 0;
    left: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    transform: translateZ(0) translateX(-100%)
}

.pushbar.from_right {
    top: 0;
    right: 0;
    width: 270px;
    max-width: 100%;
    height: 100%;
    transform: translateZ(0) translateX(100%)
}

.pushbar.from_top {
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    transform: translateZ(0) translateY(-100%)
}

.pushbar.from_bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    transform: translateZ(0) translateY(100%)
}

.pushbar.opened {
    transform: translateX(0px) translateY(0px)
}

.close-pushbar-top {
    position: absolute;
    text-align: center;
    left: 0;
    color: #777;
    width: 40px;
    line-height: 50px
}

.input_pushbar {
    border: 0;
    padding: 0 50px;
    height: 50px;
    color: #757575
}

    .input_pushbar:focus {
        border: 0
    }

.pushbar_search {
    position: absolute;
    right: 0;
    color: #757575;
    width: 50px;
    height: 50px
}

.btn-menu {
    border: 0;
    height: 55px;
    padding: 0 10px;
}

.icon-x {
    position: absolute;
    right: 5px;
    font-size: 24px;
    z-index: 999;
    cursor: pointer;
}

.item_nav_menu {
    padding: 0 15px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
}

.header.sticky {
    width: 620px;
    left: auto;
}

.logo-m {
    float: left;
    width: 100%;
    background: #f2f2f2;
    padding: 10px;
}

.ul_nav2 {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    background: #f2f2f2;
    display: table;
}

    .ul_nav2 li {
        float: left;
        display: table-cell;
        border: solid 1px #fff;
    }

.a_nav2 {
    display: block;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    padding: 0 10px;
}

    .a_nav2:hover {
        background: #000080;
        color: #fff;
    }

    .a_nav2.active {
        background: #000080;
        color: #fff;
    }

@media only screen and (max-width:639px) {
    .ul_nav2 li {
        display: table-cell;
        width: 25%;
        font-size: 12px;
        text-align: center
    }

    .a_nav2 {
        padding: 0;
    }

    .pushbar.from_left {
        width: 100%;
    }

    .header.sticky {
        width: 100%;
        left: 0;
    }
}
/* End pushbar mySidebar */
/* Bengin accordion-menu*/
.accordion-menu {
    width: 100%;
    float: left;
}

.accordion_item1 {
    padding: 13px 0;
    position: relative;
    width: 100%;
    float: left;
    border-bottom: solid 1px #e0e0e0;
}

.accordion_title {
    float: left;
}

.accordion_dropdown {
    display: none;
    width: 100%;
    float: left;
    padding-top: 10px;
}

.accordion_item2 {
    padding: 10px 0;
    float: left;
    width: 100%;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out
}

.dropdownlink {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 0;
    background: url(../images/down3.svg) no-repeat center;
    background-size: 12px;
    width: 24px;
    height: 24px;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out
}

.accordion_item1.open .dropdownlink {
    background: url(../images/down3.svg) no-repeat center;
    background-size: 12px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out
}

.accordion_cl2 {
    float: left;
    width: 50%;
    padding: 7px;
    border: solid 1px #e0e0e0;
    background: #f2f2f2;
}

.ulp {
    padding-left: 15px;
    float: left;
    width: 100%;
}

.tentinh {
    padding: 10px 0;
    font-weight: 500;
    float: left;
    width: 100%;
    padding-left: 15px;
}

.ulp2 {
    float: left;
    padding-left: 15px;
    width: 100%;
    margin-bottom: 20px
}
/* End accordion-menu*/



/* Bengin container */
.container {
    float: left;
    width: 100%;
    overflow: hidden
}

.main {
    float: left;
    width: 100%;
    position: relative
}

.main-content {
    margin: auto;
    width: 100%;
    max-width: 640px;
    padding: 0 10px
}

.header {
    float: left;
    width: 100%;
    background: #f2f2f2;
    height: 55px;
    height: 55px;
    box-shadow: 2px 2px 5px -3px rgba(32,33,36,0.28);
}

.icon-home {
    float: left;
    margin-top: 8px;
    margin-left: 10px;
}

.logo {
    float: right;
    margin-right: 10px;
    margin-top: 10px;
}

.nav-main {
    float: left;
    width: 100%;
    background: #9e082b;
    margin-bottom: 10px;
}

.ul_nav li {
    float: left;
    width: 25%;
    text-align: center;
}

.a_nav {
    float: left;
    width: 100%;
    color: #fff;
    height: 38px;
    line-height: 38px;
    border: solid 1px #9e082b;
    overflow: hidden;
}

    .a_nav.active {
        color: #222;
        background: #fff;
    }

    .a_nav:hover {
        color: #222;
        background: #fff;
    }

.font_so {
    font-size: 21px;
}

.color666 {
    color: #666;
}

.section {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    position: relative
}

.cat-box-title {
    float: left;
    width: 100%;
    position: relative;
    background: #9e082b;
    padding: 5px 10px;
    text-align: center;
    color: #fff;
}

.title_home {
    background: #f2f2f2;
    float: left;
    width: 100%;
    font-size: 16px;
    text-align: center;
    color: #9e082b;
    margin-bottom: 10px;
    padding: 6px 10px;
}

.title-cat {
    font-size: 16px;
    color: #fff;
    /*text-decoration: underline*/
}

    .title-cat a {
        color: #fff;
    }

.cat-box-content {
    float: left;
    width: 100%;
    position: relative
}

.font_date {
    font-size: 16px;
    color: #666666
}

.font_th {
    font-size: 16px;
    font-weight: 400;
}

.td_col2 {
    width: 50%
}

.td_col3 {
    width: 33.33%
}

.td_col4 {
    width: 25%
}

.td_col5 {
    width: 20%
}

.post-sapo {
    line-height: 1.6
}

.more-link {
    float: left;
    width: 100%
}

.more-link-left {
    float: left
}

.more-link-right {
    float: right
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.color_white {
    color: #ffffff
}

.color_red {
    color: #ff0000
}

.color_blue {
    color: #000080
}

.bgf2f2f2 {
    background: #f2f2f2
}
/*End */

/*Bengin table */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    line-height: 1.6;
}

.table td, .table th {
    padding: 6px 8px;
    border: 1px solid #e0e0e0;
}

.scrol_content {
    display: flex;
    min-width: 100%;
    overflow-x: auto
}

.align-top {
    vertical-align: top
}

/*End table */

/*Bengin ads */
.ads {
    float: left;
    width: 100%;
    text-align: center;
    position: relative;
    margin: 10px 0
}

    .ads img {
        max-width: 100%
    }
/*End ads */

/* Bengin breadcrumbs */
/*crumbs 1 */
.breadcrumb1 {
    float: left;
    width: 100%;
    background: #edd7be;
    padding: 10px;
    line-height: 1.6
}

    .breadcrumb1 li {
        display: inline;
        color: #0000ff;
    }

        .breadcrumb1 li + li:before {
            padding: 0 5px;
            color: #555;
            content: "/\00a0"
        }

        .breadcrumb1 li a {
            color: #0000ff;
            text-decoration: none
        }

            .breadcrumb1 li a:hover {
                color: #9e082b;
                text-decoration: underline
            }

/*Bengin pagination */
.pagination {
    float: left;
    width: 100%
}

.pagination-load {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    text-align: center
}

.pagination-loadmore {
    float: left;
    width: 100%;
    background: #f2f2f2;
    height: 36px;
    line-height: 36px
}

    .pagination-loadmore:hover {
        background-color: #0000ff;
        color: #fff
    }

.load-more {
    float: left;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    background: #f2f2f2;
    margin-bottom: 10px;
    padding: 10px;
}
/* End pagination */

/*footer */
.footer {
    float: left;
    width: 100%;
    position: relative;
    background: #9e082b;
}

.footer-content {
    float: left;
    width: 100%;
}

.footer-title {
    float: left;
    width: 100%;
    color: #fff;
    padding: 15px 10px;
}

.footer-container {
    float: left;
    width: 100%
}

.ulitem {
    display: table;
    border-bottom: solid 1px #d4145a;
    border-top: solid 1px #d4145a;
    float: left;
    width: 100%;
}

.footer-item {
    display: table-cell;
    padding: 10px;
    float: left;
    width: 50%;
    border: solid 1px #d4145a;
    border-top: 0;
    border-left: 0;
}

    .footer-item a {
        color: #fff;
    }
/* End container */
.box_ads {
    float: left;
    width: 100%;
}

.fixads {
    float: left;
    width: 100%;
    margin: 15px 0;
    border-bottom: solid 1px #dcdcdc;
}

.ads-line {
    float: left;
    margin: 10px 0;
    width: 100%;
    background: #dcdcdc;
    height: 1px;
    position: relative;
}

.ads-span {
    font-size: 12px;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 0 10px;
    color: #b3b3b3;
}

.box_info {
    float: left;
    width: 100%;
    background: #f2f2f2;
    padding: 10px 15px;
}
.box_info p{ 
    margin: 0;
    padding: 5px 0;
    color: #333;
    line-height: 25px;}
.box_link {
    float: left;
    width: 100%;
    background: #f2f2f2;
    padding: 10px 15px;
}

.box_link_title {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: solid 1px #fff;
}

.box_link_li {
    padding: 10px 0;
}

    .box_link_li a {
        color: #0000ff
    }

.tick_icon {
    float: left;
    margin-right: 5px;
}

.tk_mn {
    padding: 10px;
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
}

.table1 td, .table1 th {
    padding: 0;
    border: 1px solid #e0e0e0;
}

.font-color {
    color: #000088;
    font-size: 12px;
    line-height: 1.5;
}

.color000088 {
    color: #000088;
}

.font18 {
    font-size: 16px;
    font-weight: bold;
}

.colorred {
    color: #ad0000;
}
/* Bengin col3_table_cell*/
.ultable_cell {
    float: left;
    width: 100%;
    line-height: 1.5;
    display: table
}

.col4_table_cell {
    text-align: center;
    position: relative;
    width: 25%;
    border-left: solid 1px #ddd;
    height: inherit;
    display: table-cell;
    vertical-align: top
}

    .col4_table_cell:first-child {
        border-left: 0
    }

.col3_table_cell {
    text-align: center;
    position: relative;
    width: 33.333%;
    border-left: solid 1px #ddd;
    height: inherit;
    display: table-cell;
    vertical-align: top
}

    .col3_table_cell:first-child {
        border-left: 0
    }

.col2_table_cell {
    text-align: center;
    position: relative;
    width: 50%;
    border-left: solid 1px #ddd;
    height: inherit;
    display: table-cell;
    vertical-align: top
}

    .col2_table_cell:first-child {
        border-left: 0
    }

.content_table_cell {
    vertical-align: baseline;
    float: left;
    position: relative;
    width: 100%;
    padding: 8px
}
/* End col3_table_cell*/

.ul_sub_mobi {
    float: left;
    width: 100%;
    background: #edd7be;
    margin-bottom: 10px;
}

    .ul_sub_mobi li:first-child {
        border-left: 0;
    }

    .ul_sub_mobi li {
        width: 12.5%;
        float: left;
        border-left: solid 1px #fff;
    }

.alink {
    float: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    text-align: center;
}

    .alink:hover {
        color: #fff;
        background: #9e082b;
    }

    .alink.active {
        color: #fff;
        background: #9e082b;
    }

@media only screen and (max-width:639px) {
    .blockmenu{
        width:94% !important;
    }
    .ul_navigation li {
        width: 50%!important;
    }

    .ul_sub_nav1 {
        display: none;
    }
    .ul_sub_mobi li {
        width: 25%;
        border-bottom: solid 1px #fff;
    }

        .ul_sub_mobi li:nth-child(5n+5) {
            border-left: 0;
        }

    .alink {
        font-size: 13px;
        height: 34px;
        line-height: 34px;
    }


    .font_so {
        font-size: 14px;
        font-weight: 500;
    }

    .font_date {
        font-size: 10px;
    }

    .font_th {
        font-size: 14px;
    }

    .ul_nav li {
        float: left;
        width: 50%;
        text-align: center;
    }

    .footer-item {
        width: 100%;
        border-right: 0;
    }
}
/* Begin menu css3 all */
.ul_navigation {
    float: left;
    width: 100%;
    position: relative;
    background: #9e082b;
    box-shadow: 0 1px 6px 0 rgba(32,33,36,0.28)
}

    .ul_navigation li {
        float: left;
        position: relative;
        width: 25%;
    }

.item_nav1 {
    padding: 12px 0;
    float: left;
    width: 100%;
    color: #fff;
    text-align: center;
    border-left: solid 1px #c5c5c5;
    border-bottom: solid 1px #c5c5c5;
    -webkit-transition: color 0.2s linear,background 0.2s linear;
    -moz-transition: color 0.2s linear,background 0.2s linear;
    -o-transition: color 0.2s linear,background 0.2s linear;
    transition: color 0.2s linear,background 0.2s linear
}

    .item_nav1:hover {
        background: #fff;
        color: #000;
        /*border: solid 1px #fff;*/
    }

    .item_nav1.active {
        background: #fff;
        color: #000;
        /*border: solid 1px #fff;*/
    }
/* sub-Down */
.ul_navigation li:hover > ul {
    visibility: visible;
    opacity: 1
}

.ul_navigation ul, ul.ul_navigation ul li ul {
    width: 180px;
    background: #fff;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    -webkit-transition: opacity 0.2s linear,visibility 0.2s linear;
    -moz-transition: opacity 0.2s linear,visibility 0.2s linear;
    -o-transition: opacity 0.2s linear,visibility 0.2s linear;
    transition: opacity 0.2s linear,visibility 0.2s linear
}

.ul_sub_nav1 {
    top: 43px;
    left: 0
}

    .ul_sub_nav1 li {
        width: 100%
    }

.ul_sub_nav2 {
    top: 0;
    left: 180px
}

.item_nav2 {
    padding: 12px 15px;
    float: left;
    width: 100%
}

    .item_nav2:hover {
        background: #f2f2f2;
        color: #9e082b
    }
    .item_nav2.active {
        background: #f2f2f2;
        color: #9e082b
    }
/* End menu css3 all */
.fixundeline{
    text-decoration:underline !important;
    font-size:14px;
    font-weight:400;
}
.blockmenu {
    position: fixed;
    max-width: 620px;
    width: 100%;
    z-index: 999;
}

/*begin box tin nong*/

.block-ev-wrapper {
    float: left;
    display: none;
    width: 100%;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    background-color: white;
}

.block-ev {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
    /*border-radius: 5px;*/
    border: 1px solid #222;
    max-width: 622px;
}

.title-ev {
    font-size: 20px;
    padding: 10px;
    color: #c30000;
    text-align: center;
    font-weight: bold;
}

.ul-ev {
    margin: 0;
    padding: 0;
}

    .ul-ev li {
        list-style: none;
        padding: 10px 16px;
    }

        .ul-ev li:nth-child(2n+1) {
            background: #f0f0f0
        }

        .ul-ev li a {
            color: #222;
            text-decoration: none
        }

            .ul-ev li a:hover {
                color: #2D498C
            }

.close-ev {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 28px;
    width: 30px;
    line-height: 40px;
    text-align: center;
    z-index: 9;
    cursor: pointer
}

.title-text-ev {
    background: #333;
    color: #fff;
    padding: 8px 15px 8px 5px;
    position: relative;
    float: left;
    width: 100%;
    height: 36px;
}

    .title-text-ev a, .title-text-ev p {
        color: #fff;
        text-decoration: none;
        width: 90%;
        overflow: hidden;
        display: inline-block;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.show-ev {
    position: absolute;
    top: 10px;
    line-height: 14px;
    right: 12px;
    height: 14px;
    width: 14px;
    cursor: pointer
}

    .show-ev img {
        height: 14px;
        width: 14px
    }

.ihot {
    height: 16px;
    width: 16px;
    margin-right: 3px;
    float: left;
}

.hdr-color-white {
    color: white;
}
/*end box tin nong*/