﻿/*---reset---*/
* {
    margin: 0px;
    padding: 0px;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    border: 0pt none;
    font: inherit;
    margin: 0pt;
    padding: 0pt;
}

body, html {
    height: 100%;
    font-family: 'Tahoma';
    font-size: 12px;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

select {
    outline: none;
}

input[type="submit"], input[type="button"] {
    border: none;
    cursor: pointer;
}

textarea, input[type="text"], input[type="password"] {
    outline: none;
    font-family: Arial;
    color: black;
    padding: 5px;
    vertical-align: middle;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
}

    textarea:focus, input[type="text"]:focus, input[type="password"]:focus {
        /*border: 1px solid #60ABF8;
        background: rgba(247, 253, 254, 0.7);*/
    }

ol, ul {
    list-style: none outside none;
}

b, strong {
    font-weight: bold;
}

i {
    font-style: italic;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: none;
    }

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

    a:hover {
        color: #b20d0d;
    }

img {
    vertical-align: middle;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.clearfix {
    clear: both;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    height: 0;
    width: 100%;
}

.select-box {
    padding: 3px;
    vertical-align: middle;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border: 1px solid #ccc;
}

.print {
    background: url(../Icons/g_print.gif) no-repeat 2px;
    padding-left: 15px;
    font-size: 12px;
}

/*
    Link page
*/

.linkPage {
    line-height: 30px;
    font-size: 12px;
}

    .linkPage a {
        padding: 3px 5px;
        font-size: 11px;
        margin: 2px;
        background-color: #ccc;
        background: rgba(225,225,225,0.7);
        border: 1px solid #ccc;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -o-border-radius: 3px;
        -ms-border-radius: 3px;
        -moz-transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .linkPage a:hover {
            background-color: #fff;
            color: #000;
        }

    .linkPage .currentPage {
        padding: 3px 5px;
        font-size: 11px;
        margin: 2px;
        width: 10px;
        border: 1px solid #ccc;
        background-color: #fff;
        color: #000;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -o-border-radius: 3px;
        -ms-border-radius: 3px;
    }

.content-linkPage {
    margin: 10px 0px;
}

/*
    Back to top
*/

#go_top {
    position: fixed;
    width: 50px;
    height: 50px;
    background: #039BE5 url(../Icons/go-top.png) no-repeat 15px 18px;
    text-indent: -99999px;
    cursor: pointer;
    bottom: 60px;
    right: 60px;
    opacity: 0.6;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

    #go_top:hover {
        opacity: 1;
        -moz-box-shadow: 0px 0px 5px #333;
        -webkit-box-shadow: 0px 0px 5px #333;
        box-shadow: 0px 0px 5px #333;
    }

/*
    Css Table
*/

.mGrid {
    width: 100%;
    background-color: #fff;
    color: #333;
    margin: 5px 0 10px 0;
    border: solid 1px #fff;
    border-collapse: collapse;
}

    .mGrid tr td {
        background: #f5f6e8;
        padding: 5px;
        line-height: 18px;
        border: solid 2px #fff;
        text-align: center;
        font-size: 12px;
    }

    .mGrid tr.row-1 td {
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
        background: #ff7152;
        color: #fff;
    }

    .mGrid tr.row-2 td {
        font-size: 14px;
        font-weight: bold;
    }

    .mGrid tr td input[type="text"] {
        width: 30px;
    }

    .mGrid tr td img {
        width: 60px;
        height: 60px;
        vertical-align: middle;
    }

    .mGrid tr td a {
        font-weight: bold;
    }

    .mGrid tr td span.price,
    .mGrid tr th span.price {
        color: #f00;
    }

    .mGrid tr th {
        padding: 5px 2px;
        text-align: center;
        font-size: 14px;
        color: #444;
        font-weight: bold;
        background: #e3e3e3;
        border-left: solid 1px #fff;
    }

    .mGrid .mGrid-tr {
        width: 100%;
        border-bottom: 1px solid #ede9e9;
        overflow: hidden;
    }

        .mGrid .mGrid-tr:last-child {
            border-bottom: none;
        }

    .mGrid .mGrid-body > .mGrid-tr {
        background: #eff1f1;
    }

        .mGrid .mGrid-body > .mGrid-tr:nth-child(2n+1) {
            background: #fff;
        }

    .mGrid .step-by-step {
        width: 100%;
    }

        .mGrid .step-by-step:nth-child(2n+1) {
            background: #f6f6f6;
        }

    .mGrid .mGrid-tr .mGrid-th {
        float: left;
        padding: 10px;
        font-weight: bold;
        text-align: center;
        background: #666;
        color: #fff;
        border-left: 1px solid #fff;
    }

        .mGrid .mGrid-tr .mGrid-th:first-child {
            border-left: none;
            min-width: 30px;
        }

    .mGrid .mGrid-tr .mGrid-td {
        float: left;
        height: 200px;
        padding: 10px;
        border-left: 1px solid #dcdcdc;
    }

        .mGrid .mGrid-tr .mGrid-td:first-child {
            min-width: 30px;
            line-height: 200px;
            text-align: center;
            border-left: none;
        }

        .mGrid .mGrid-tr .mGrid-td img {
            width: 120px;
            max-height: 160px;
        }

        .mGrid .mGrid-tr .mGrid-td p {
            margin: 5px 0px;
            line-height: 19px;
        }

/*----------- Site map --------------*/

.site-map {
    width: 100%;
    padding: 5px 0px;
    margin-bottom: 5px;
}

    .site-map a {
        color: #039BE5;
    }

        .site-map a:hover {
            text-decoration: underline;
        }

    .site-map p {
        display: inline-block;
        background: url(../Icons/breadcrumbsep.gif) no-repeat 0px 3px;
        padding: 0px 10px;
    }

        .site-map p:first-child {
            background: none;
        }

.float-left {
    float: left;
}

.float-right {
    float: right;
}

/*
    Deal
*/
#deal {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 330px;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    text-align: center;
    z-index: 99999;
}

    #deal .inner-email {
        background: #039BE5;
        min-height: 160px;
        padding: 10px 5px;
    }

        #deal .inner-email > p {
            font-size: 18px;
            color: #fff;
            text-align: left;
            padding-bottom: 10px;
        }

            #deal .inner-email > p > span {
                font-size: 12px;
            }

        #deal .inner-email > .inner-email-view {
            width: 310px;
            height: 125px;
            background: #fff;
            border-radius: 0px;
            padding: 5px;
            overflow: hidden;
        }

            #deal .inner-email > .inner-email-view .email-view {
                padding: 5px 0px;
            }

                #deal .inner-email > .inner-email-view .email-view p {
                    padding: 5px 0px;
                }

    #deal .show-d, #deal .close-d {
        position: absolute;
        top: 40px;
        right: 290px;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        -webkit-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        transition: all 0.4s ease;
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        writing-mode: lr-tb;
        z-index: 999;
    }

.show-d p, .close-d p {
    width: 100px;
    background: #999;
    padding: 0px 5px;
    line-height: 30px;
}

    .show-d p:hover {
        background: #039BE5;
    }

.close-d p {
    background: #039BE5;
}

.show-d:hover span {
    background: #6ac2fa;
}

.close-d:hover span {
    background: #eb3700;
}

.show-d p a, .close-d p a {
    display: block;
    color: #fff;
    cursor: pointer;
}

    .show-d p a:hover, .close-d p a:hover {
        color: #fff;
    }

    .show-d p a:before {
        content: "Quảng cáo";
    }

    .close-d p a:before {
        content: "Quảng cáo";
    }

    .show-d p a span, .close-d p a span {
        border: 1px solid #ccc;
        padding: 1px 5px;
    }

    .show-d p a span {
        padding-top: 3px;
    }

        .show-d p a span:before {
            content: "^";
        }

    .close-d p a span:before {
        content: "X";
    }
