﻿@charset "utf-8";
/* CSS Document */
/* Common tags */
* {
    outline: none;
}

html, html a {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #494949;
    margin: 0;
    padding: 0;
    background: #edf0ef;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #353434;
}

    a img {
        border: none;
    }

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

.nomarginright {
    margin-right: 0 !important;
}

.floatleft {
    float: left !important;
}

.floatright {
    float: right !important;
}
/* text */

.uppercase {
    text-transform: uppercase !important;
}

.f14 {
    font-size: 14px !important;
}

.f16 {
    font-size: 16px !important;
}

.center {
    text-align: center !important;
}

.EditingFormErrorLabel {
    color: red !important;
}

/* Wrapper */
#wrapper {
    width: 1000px;
    margin: 0 auto;
    position: relative;
}

    #wrapper .wrap {
        float: left;
        width: 100%;
        margin: 0 0 20px 0;
        background: #fff;
        -webkit-box-shadow: 0px 3px 7px 3px rgba(50, 50, 50, 0.2);
        -moz-box-shadow: 0px 3px 7px 3px rgba(50, 50, 50, 0.2);
        box-shadow: 0px 3px 7px 3px rgba(50, 50, 50, 0.2);
    }

/* Header */
#header {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    height: 150px;
    background: url(../images/banner.jpg) no-repeat;
}

    #header #logo {
        width: 190px;
        height: 100px;
        float: left;
        margin: 40px 0 10px 15px;
    }

        #header #logo h1.logo {
            width: 190px;
            height: 100px;
        }

            #header #logo h1.logo a {
                text-indent: -9999px;
                font-size: 0;
                width: 190px;
                height: 100px;
                display: block;
                background: url(../images/logo.png) no-repeat;
            }

    #header .floatright {
        width: 790px;
    }

    #header .top {
        float: right;
        max-width: 790px;
        margin: 5px 0 0 0;
    }

        #header .top .frm_search {
            float: left;
            width: 220px;
            height: 25px;
        }

            #header .top .frm_search input[type='submit'] {
                display: none;
            }

            #header .top .frm_search .TextBoxField {
                background: url(../images/icon_search.png) 190px center no-repeat #fff;
                border: 1px solid #d9d6d6;
                padding: 0 34px 0 9px;
                width: 175px;
                height: 23px;
                line-height: 23px;
                font-family: Arial, Helvetica, sans-serif;
                font-size: 12px;
                color: #353434;
                border-radius: 11px;
                -webkit-border-radius: 11px;
                -moz-border-radius: 11px;
            }

    #header .language {
        float: left;
        margin: 4px 7px;
        height: 16px;
    }

        #header .language a {
            float: left;
            display: block;
            width: 22px;
            height: 16px;
            margin: 0 3px;
        }

            #header .language a img {
                display: block;
            }

/* Menu */
#menu {
    float: right;
    max-width: 100%;
    margin: 80px 0 0 0;
    padding: 0;
    position: relative;
    list-style: none;
    background: #e8b343;
    -moz-border-radius-topleft: 25px;
    -webkit-border-top-left-radius: 25px;
    border-top-left-radius: 25px;
}


    #menu > li {
        float: left;
        background: url(../images/line.png) right center no-repeat;
        position: relative;
    }

        #menu > li.last {
            background: none;
        }

        #menu > li > a {
            padding: 0 15px;
            display: block;
            height: 40px;
            line-height: 40px;
            color: #fff;
            font-size: 12px;
            font-family: Arial, Helvetica, sans-serif;
            text-transform: uppercase;
            font-weight: bold;
        }

        #menu > li:hover > a,
        #menu > li.CMSListMenuHighlightedLI > a {
            color: #353434;
        }

        #menu > li.has-sub:hover > a {
            background: url(../images/arr1.png) center bottom no-repeat;
        }


    #menu .sub_wrap {
        position: absolute;
        left: -30%;
        padding: 5px 0 0 0;
        top: 100%;
        display: none;
        z-index: 1;
        min-width: 100%;
        background: url(../images/blank.gif);
    }

    #menu > li:hover > .sub_wrap {
        display: block;
    }

    #menu > li:hover > .sub_wrap {
        z-index: 9999;
    }

    #menu .sub {
        float: left;
        padding: 0;
        z-index: 1;
        list-style: none;
        margin: 0;
        width: 100%;
        background: #e8b343;
    }

        #menu .sub li {
            display: block;
            white-space: nowrap;
            padding: 5px 20px 5px 10px;
            border-bottom: 1px solid #f4ca71;
            border-top: 1px solid #d2a23c;
            position: relative;
        }

            #menu .sub li.last {
                border-bottom: none;
            }

            #menu .sub li.first {
                border-top: none;
            }

            #menu .sub li.has-sub:hover {
                background: url(../images/arr2.png) right 8px no-repeat;
            }


            #menu .sub li a {
                color: #fff;
                display: block;
                padding: 0 5px 0 15px;
                line-height: 20px;
                font-size: 12px;
                background: url(../images/bullet1.png) 0 6px no-repeat;
            }

            #menu .sub li:hover > a,
            #menu .sub li.CMSListMenuHighlightedLI > a {
                color: #7c5708;
                background: url(../images/bullet1_h.png) 0 6px no-repeat;
            }

        #menu .sub ul {
            position: absolute;
            left: 100%;
            top: 0;
            list-style: none;
            margin: 0;
            width: 100%;
            background: url(../images/blank.gif);
            padding: 0 0 0 5px;
            display: none;
        }

        #menu .sub li:hover > ul {
            display: block;
        }

        #menu .sub ul li {
            background: #e8b343;
        }




/* Main */
#main {
    float: left;
    width: 980px;
    margin: 0;
    padding: 10px;
}

/* Sidebar */
.sidebar {
    float: left;
    width: 180px;
    margin: 0;
    padding: 5px 0;
}

    .sidebar .block {
        float: left;
        width: 100%;
        padding: 5px 0;
    }

        .sidebar .block .header {
            float: left;
            width: 170px;
            padding: 0 5px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            font-size: 12px;
            background: #e8b343;
        }

        .sidebar .block .content {
            float: left;
            width: 178px;
            border: 1px solid #d7d4d4;
            background: #fff;
            border-top: none;
        }

    .sidebar .categories {
        float: left;
        width: 100%;
        padding: 5px 0;
        margin: 0;
        list-style: none;
    }

        .sidebar .categories > li {
            border-bottom: 1px dotted #d0d1d3;
            padding: 0;
        }

            .sidebar .categories > li.last {
                border-bottom: none;
            }

            .sidebar .categories > li > a {
                color: #312f2f;
                background: url(../images/bullet2.png) 9px 11px no-repeat;
                padding: 5px 5px 5px 19px;
                line-height: 20px;
                display: block;
            }

            .sidebar .categories > li:hover > a,
            .sidebar .categories > li.CMSListMenuHighlightedLI > a {
                color: #eeaa1a;
                background: url(../images/bullet2_h.png) 9px 11px no-repeat;
            }

            .sidebar .categories > li.expanded > a {
                color: #eeaa1a;
                background: url(../images/bullet2_h1.png) 9px 12px no-repeat;
            }

        .sidebar .categories .sub {
            margin: 0;
            padding: 0;
            list-style: none;
        }

            .sidebar .categories .sub > li {
                padding: 5px 0 5px 25px;
                border-top: 1px dotted #d0d1d3;
            }

                .sidebar .categories .sub > li > a {
                    color: #a19999;
                    background: url(../images/bullet3.png) 0 12px no-repeat;
                    padding: 5px 0 5px 10px;
                    line-height: 20px;
                    display: block;
                }

                .sidebar .categories .sub > li:hover > a,
                .sidebar .categories .sub > li.CMSListMenuHighlightedLI > a {
                    color: #eeaa1a;
                    background: url(../images/bullet3_h.png) 0 12px no-repeat;
                }


    .sidebar .latest {
        float: left;
        width: 100%;
        padding: 5px 0;
        margin: 0;
        list-style: none;
    }

        .sidebar .latest > li {
            border-bottom: 1px dotted #d0d1d3;
            padding: 0;
        }

            .sidebar .latest > li.last {
                border-bottom: none;
            }

            .sidebar .latest > li > a {
                color: #312f2f;
                background: url(../images/bullet2.png) 9px 11px no-repeat;
                padding: 3px 5px 3px 19px;
                line-height: 24px;
                display: block;
                height: 24px;
                overflow: hidden;
            }

            .sidebar .latest > li:hover > a,
            .sidebar .latest > li.CMSListMenuHighlightedLI > a {
                color: #eeaa1a;
                background: url(../images/bullet2_h2.png) 9px 11px no-repeat;
            }

    .sidebar .readmore {
        float: right;
        padding: 5px 10px 5px 0;
        color: #fe0000;
        font-size: 11px;
        text-transform: capitalize;
        line-height: 20px;
        background: url(../images/bullet4.png) right center no-repeat;
        margin: 0 10px;
        text-decoration: underline;
    }

        .sidebar .readmore:hover {
            background: url(../images/bullet4_h.png) right center no-repeat;
            color: #353434;
        }

    .sidebar .content.support {
        border: none;
        background: url(../images/bg_support.png) no-repeat #ffecde;
        width: 100%;
    }

    .sidebar .support .sup {
        float: left;
        width: 100%;
        padding: 5px 0;
        margin: 0;
        list-style: none;
    }

        .sidebar .support .sup li {
            display: block;
            padding: 10px;
            /*background: url(../images/line2.png) left bottom repeat-x;*/
            float: left;
            width: 160px;
        }

            .sidebar .support .sup li.last {
                background: none;
            }

            .sidebar .support .sup li .icon {
                float: left;
                width: 22px;
                margin: 10px 10px 10px 0;
            }

            .sidebar .support .sup li .text {
                float: left;
                color: #454545;
                line-height: 20px;
                width: 125px;
            }

    .sidebar .content.video {
        border: none;
        width: 100%;
    }

    .sidebar .video .thumb {
        float: left;
        display: block;
        width: 180px;
        height: 120px;
        background: #353434;
    }

        .sidebar .video .thumb span {
            display: block;
            width: 180px;
            height: 120px;
            transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
        }

        .sidebar .video .thumb:hover span {
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
            filter: alpha(opacity=50);
            -moz-opacity: 0.5;
            -khtml-opacity: 0.5;
            opacity: 0.5;
        }

    .sidebar .prods {
        float: left;
        width: 160px;
        height: 350px;
        overflow: hidden;
        margin: 9px;
    }

        .sidebar .prods .prod {
            float: left;
            width: 160px;
            height: 165px;
            padding: 5px 0;
        }

            .sidebar .prods .prod .thumb {
                float: left;
                display: block;
                width: 158px;
                height: 113px;
                border: 1px solid #fff;
            }

                .sidebar .prods .prod .thumb:hover {
                    border: 1px solid #d7d4d4;
                }

                .sidebar .prods .prod .thumb span {
                    display: block;
                    width: 158px;
                    height: 113px;
                    transition: all 0.5s ease;
                    -moz-transition: all 0.5s ease;
                    -webkit-transition: all 0.5s ease;
                    -o-transition: all 0.5s ease;
                }

                .sidebar .prods .prod .thumb:hover span {
                    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
                    filter: alpha(opacity=50);
                    -moz-opacity: 0.5;
                    -khtml-opacity: 0.5;
                    opacity: 0.5;
                }

            .sidebar .prods .prod h2.title {
                float: left;
                display: block;
                height: 40px;
                line-height: 20px;
                width: 160px;
                margin: 10px 0 0 0;
                color: #353434;
                text-align: center;
                font-size: 12px;
                padding: 0;
                overflow: hidden;
            }

                .sidebar .prods .prod h2.title a {
                    color: #353434;
                }

                    .sidebar .prods .prod h2.title a:hover {
                        color: #336c1d;
                    }


    .sidebar .proj_slide {
        float: left;
        width: 160px;
        height: 450px;
        overflow: hidden;
        margin: 9px;
    }

        .sidebar .proj_slide .proj {
            float: left;
            width: 160px;
            height: 143px;
            padding: 5px 0;
        }

            .sidebar .proj_slide .proj .thumb {
                float: left;
                display: block;
                width: 158px;
                height: 100px;
                border: 1px solid #d7d4d4;
                background: #d0cfcf;
            }

                .sidebar .proj_slide .proj .thumb span {
                    display: block;
                    width: 158px;
                    height: 100px;
                    transition: all 0.5s ease;
                    -moz-transition: all 0.5s ease;
                    -webkit-transition: all 0.5s ease;
                    -o-transition: all 0.5s ease;
                }

                .sidebar .proj_slide .proj .thumb:hover span {
                    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
                    filter: alpha(opacity=50);
                    -moz-opacity: 0.5;
                    -khtml-opacity: 0.5;
                    opacity: 0.5;
                }

            .sidebar .proj_slide .proj h2.title {
                float: left;
                display: block;
                height: 25px;
                line-height: 25px;
                width: 160px;
                margin: 10px 0 0 0;
                color: #353434;
                text-align: center;
                font-size: 12px;
                padding: 0;
                overflow: hidden;
            }

                .sidebar .proj_slide .proj h2.title a {
                    color: #353434;
                }

                    .sidebar .proj_slide .proj h2.title a:hover {
                        color: #336c1d;
                    }


/* Container */
#container {
    float: left;
    width: 600px;
    margin: 0 10px;
    padding: 5px 0;
}

/* Slide */
#slide {
    float: left;
    width: 598px;
    height: 288px;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    position: relative;
    margin: 5px 0;
}

    #slide .slide_wrap {
        float: left;
        width: 598px;
        height: 288px;
    }

        #slide .slide_wrap ul {
            float: left;
            width: 598px;
            height: 288px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

            #slide .slide_wrap ul li {
                float: left;
                width: 598px;
                height: 288px;
            }

                #slide .slide_wrap ul li img {
                    display: block;
                    max-width: 598px;
                    max-height: 288px;
                }

    #slide .prev {
        background: url(../images/prev.png) no-repeat;
        width: 21px;
        height: 21px;
        position: absolute;
        left: 10px;
        top: 50%;
        margin-top: -11px;
        z-index: 99;
    }

        #slide .prev:hover {
            background: url(../images/prev_h.png) no-repeat;
        }

    #slide .next {
        background: url(../images/next.png) no-repeat;
        width: 21px;
        height: 21px;
        position: absolute;
        right: 10px;
        top: 50%;
        margin-top: -11px;
        z-index: 99;
    }

        #slide .next:hover {
            background: url(../images/next_h.png) no-repeat;
        }

    #slide #pager {
        width: 200px;
        height: 9px;
        text-align: center;
        position: absolute;
        bottom: 20px;
        left: 199px;
        z-index: 99;
    }

        #slide #pager a {
            background: url(../images/pager.png) no-repeat center center;
            width: 9px;
            height: 9px;
            margin: 0 5px;
            display: inline-block;
        }

            #slide #pager a.selected {
                background: url(../images/pager_active.png) no-repeat center center;
                cursor: default;
            }

            #slide #pager a span {
                display: none;
            }

/* Prods home page*/
.prods_home {
    float: left;
    width: 100%;
    margin: 5px 0;
}

    .prods_home .header {
        float: left;
        width: 560px;
        padding: 0 20px;
        height: 30px;
        line-height: 30px;
        color: #fff;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 12px;
        background: #e8b343;
    }

    .prods_home .content {
        float: left;
        width: 598px;
        padding: 0;
        border: 1px solid #d7d4d4;
        border-top: none;
        background: #e4e2e2;
    }

#container .prods {
    float: left;
    width: 570px;
    padding: 9px 14px;
}

    #container .prods .block {
        float: left;
        width: 180px;
        height: 180px;
        margin: 10px 5px;
        position: relative;
        z-index: 1;
    }

        #container .prods .block:hover {
            z-index: 9;
        }

        #container .prods .block .prod {
            position: absolute;
            top: 0;
            left: 0;
            width: 176px;
            height: 176px;
            overflow: hidden;
            border: 2px solid #c9caca;
            background: #fff;
            z-index: 9;
        }

        #container .prods .block:hover .prod {
            height: auto;
            border: 2px solid #00a859;
        }


    #container .prods .prod .thumb {
        float: left;
        display: block;
        width: 176px;
        height: 127px;
    }

        #container .prods .prod .thumb span {
            display: block;
            width: 176px;
            height: 127px;
            transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
        }

        #container .prods .prod .thumb:hover span {
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
            filter: alpha(opacity=50);
            -moz-opacity: 0.5;
            -khtml-opacity: 0.5;
            opacity: 0.5;
        }

    #container .prods .prod h2.title {
        float: left;
        display: block;
        height: 40px;
        line-height: 20px;
        width: 160px;
        margin: 5px 8px;
        color: #353434;
        text-align: center;
        font-size: 12px;
        padding: 0;
        overflow: hidden;
    }

        #container .prods .prod h2.title a {
            color: #353434;
        }

            #container .prods .prod h2.title a:hover {
                color: #336c1d;
            }

    #container .prods .prod .intro {
        float: left;
        display: block;
        height: 40px;
        line-height: 20px;
        width: 160px;
        margin: 5px 8px;
        color: #000;
        font-size: 12px;
        padding: 0;
        overflow: hidden;
    }

    #container .prods .prod .price {
        float: left;
        display: block;
        height: 22px;
        line-height: 22px;
        width: 160px;
        margin: 5px 8px;
        color: #000;
        font-size: 14px;
        padding: 5px;
        overflow: hidden;
        font-weight: bold;
    }

        #container .prods .prod .price span {
            color: #f00;
        }

.prods_home .viewall {
    float: right;
    padding: 5px 0 5px 10px;
    color: #fe0000;
    font-size: 12px;
    line-height: 20px;
    background: url(../images/bullet4.png) 0 center no-repeat;
    margin: 12px 20px;
    text-decoration: underline;
}

    .prods_home .viewall:hover {
        background: url(../images/bullet4_h.png) 0 center no-repeat;
        color: #353434;
    }


#container .main {
    float: left;
    width: 100%;
    margin: 5px 0;
}

    #container .main .header {
        float: left;
        width: 560px;
        padding: 0 20px;
        height: 30px;
        line-height: 30px;
        color: #fff;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 12px;
        background: #e8b343;
    }

    #container .main .content {
        float: left;
        width: 598px;
        padding: 0;
        border: 1px solid #d7d4d4;
        border-top: none;
        background: #fff;
    }

        #container .main .content.bg {
            background: #e4e2e2;
        }


/* Breadcrumbs */
.breadcrumbs {
    float: left;
    margin: 0;
    width: 580px;
    padding: 5px 9px;
    height: 20px;
    line-height: 20px;
    color: #494949;
    font-size: 11px;
}

    .breadcrumbs a {
        color: #494949;
    }

        .breadcrumbs a:hover {
            color: #336c1d;
        }

        .breadcrumbs a.home {
            background: url(../images/icon_home.png) left center no-repeat;
            padding: 0 0 0 20px;
        }

h2.page_title {
    float: left;
    display: block;
    width: 560px;
    padding: 5px 19px;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 25px;
    color: #494949;
    text-align: center;
}

/* News */

.news_blocks {
    float: left;
    width: 100%;
    padding: 0;
}

    .news_blocks .news {
        float: left;
        width: 580px;
        padding: 15px 9px;
        border-bottom: 1px dashed #d1d1d1;
    }

        .news_blocks .news.last {
            border-bottom: none;
        }

        .news_blocks .news:hover {
            background: #f5f4f4;
        }

        .news_blocks .news .thumb {
            float: left;
            width: 146px;
            height: 90px;
            margin: 0 10px 0 0;
            border: 2px solid #d0cfcf;
            transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
        }

            .news_blocks .news .thumb span {
                width: 146px;
                height: 90px;
                display: block;
            }

            .news_blocks .news .thumb:hover {
                border: 2px solid #e8b343;
            }

        .news_blocks .news .intro {
            float: left;
            width: 410px;
            height: 94px;
            overflow: hidden;
        }

        .news_blocks .news h2.title {
            float: left;
            width: 100%;
            height: 22px;
            overflow: hidden;
            color: #434a54;
            font-size: 12px;
            line-height: 22px;
        }

            .news_blocks .news h2.title a {
                color: #434a54;
            }

            .news_blocks .news h2.title:hover a {
                color: #336c1d;
            }

        .news_blocks .news .text {
            float: left;
            width: 100%;
            height: 44px;
            overflow: hidden;
            color: #656565;
            font-size: 12px;
            font-weight: normal;
            line-height: 22px;
        }

        .news_blocks .news .readmore {
            float: right;
            padding: 4px 10px 4px 0;
            color: #fe0000;
            font-size: 11px;
            text-transform: capitalize;
            line-height: 20px;
            background: url(../images/bullet4.png) right center no-repeat;
            text-decoration: underline;
        }

            .news_blocks .news .readmore:hover {
                background: url(../images/bullet4_h.png) right center no-repeat;
                color: #353434;
            }

.news_detail {
    float: left;
    width: 570px;
    padding: 9px 14px;
    line-height: 24px;
    color: #494949;
}

    .news_detail table,
    .news_detail iframe {
        max-width: 100%;
    }

    .news_detail img {
        max-width: 568px;
        border: 1px solid #e2e2e2;
    }

.rel_news {
    float: left;
    width: 100%;
    padding: 10px 0;
}

    .rel_news .head {
        float: left;
        padding: 0 19px;
        border-top: 1px solid #d7d4d4;
        border-bottom: 1px solid #d7d4d4;
        background: #fafafa;
        width: 560px;
        height: 33px;
        line-height: 33px;
        overflow: hidden;
        font-size: 12px;
        text-transform: uppercase;
        color: #626161;
        font-weight: bold;
    }

    .rel_news .rel {
        float: left;
        list-style: none;
        margin: 0;
        padding: 10px 19px;
        width: 655px;
    }

        .rel_news .rel li {
            display: block;
            padding: 3px 0;
        }

            .rel_news .rel li a {
                background: url("../images/bullet5.png") 0 7px no-repeat;
                color: #434a54;
                display: block;
                line-height: 22px;
                padding: 0 0 0 20px;
                font-weight: bold;
            }

                .rel_news .rel li a:hover {
                    background: url("../images/bullet5_h.png") 0 7px no-repeat;
                    color: #336c1d;
                }

/* Products */
.prod_detail {
    float: left;
    float: left;
    width: 580px;
    padding: 10px 9px;
}

    .prod_detail .left {
        float: left;
        width: 264px;
        margin: 10px 14px 10px 0;
    }

    .prod_detail .image {
        float: left;
        border: 1px solid #d4dfe7;
        margin: 10px 14px 10px 0;
        width: 264px;
        height: 194px;
        position: relative;
    }

        .prod_detail .image:hover {
            border: 1px solid #d7d4d4;
        }

.otherimage {
    width: 100%;
    float: left;
    padding: 10px 0;
}

.prod_detail .otherimage .thumbs {
    float: left;
    margin-right: 9px;
    border: 1px solid #dcdcdc;
    width: 80px;
    height: 80px;
}

    .prod_detail .otherimage .thumbs span {
        display: block;
        width: 80px;
        height: 80px;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

.prod_detail .image .thumb {
    float: left;
    width: 264px;
    height: 194px;
}

    .prod_detail .image .thumb span {
        display: block;
        width: 264px;
        height: 194px;
        transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

.prod_detail .image:hover .thumb span {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

.prod_detail .image .zoom {
    background: url(../images/icon_zoom.png) no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.prod_detail .main_info {
    float: left;
    width: 300px;
    margin: 10px 0;
}

    .prod_detail .main_info h2.title {
        color: #444;
        font-size: 14px;
        text-transform: uppercase;
        float: left;
        display: block;
        width: 100%;
        line-height: 24px;
    }

    .prod_detail .main_info .info {
        color: #444;
        font-size: 12px;
        float: left;
        display: block;
        width: 100%;
        line-height: 20px;
        margin: 5px 0;
    }

    .prod_detail .main_info .price {
        color: #444;
        font-size: 12px;
        float: left;
        display: block;
        width: 100%;
        line-height: 20px;
        margin: 5px 0;
        font-weight: bold;
    }

        .prod_detail .main_info .price a {
            color: #444;
            font-weight: normal;
        }

            .prod_detail .main_info .price a:hover {
                text-decoration: underline;
                color: #270dec;
            }

    .prod_detail .main_info .share {
        float: left;
        display: block;
        width: 100%;
        height: 20px;
        margin: 5px 0;
    }

.prod_detail .featured {
    float: left;
    width: 100%;
    padding: 10px 0;
}


    .prod_detail .featured .head {
        float: left;
        background: url(../images/bg_head2.png) repeat-x;
        height: 23px;
        line-height: 23px;
        padding: 0 15px;
        color: #fff;
        font-size: 12px;
        text-transform: uppercase;
        -moz-border-radius-topleft: 5px;
        -webkit-border-top-left-radius: 5px;
        border-top-left-radius: 5px;
        -moz-border-radius-topright: 5px;
        -webkit-border-top-right-radius: 5px;
        border-top-right-radius: 5px;
    }


    .prod_detail .featured .cont {
        float: left;
        border: 1px solid #d4dfe7;
        margin: 2px 0 0 0;
        width: 540px;
        padding: 0 19px;
        color: #444;
        line-height: 22px;
    }

.rel_prods {
    float: left;
    padding: 19px 9px;
    width: 580px;
}

    .rel_prods .prev1 {
        float: left;
        background: url(../images/prev1.png) no-repeat;
        width: 13px;
        height: 21px;
        margin: 75px 7px 0 0;
    }

        .rel_prods .prev1:hover {
            background: url(../images/prev1_h.png) no-repeat;
        }

    .rel_prods .next1 {
        float: left;
        background: url(../images/next1.png) no-repeat;
        width: 13px;
        height: 21px;
        margin: 75px 0 0 7px;
    }

        .rel_prods .next1:hover {
            background: url(../images/next1_h.png) no-repeat;
        }

    .rel_prods .slide_wrap {
        float: left;
        width: 540px;
        height: 170px;
        overflow: hidden;
    }

        .rel_prods .slide_wrap .prod {
            width: 166px;
            height: 166px;
            border: 2px solid #c9caca;
            margin: 0 5px;
            float: left;
        }

            .rel_prods .slide_wrap .prod:hover {
                border: 2px solid #00a859;
            }

            .rel_prods .slide_wrap .prod .thumb {
                float: left;
                display: block;
                width: 166px;
                height: 122px;
            }

                .rel_prods .slide_wrap .prod .thumb span {
                    display: block;
                    width: 166px;
                    height: 122px;
                    transition: all 0.5s ease;
                    -moz-transition: all 0.5s ease;
                    -webkit-transition: all 0.5s ease;
                    -o-transition: all 0.5s ease;
                }

                .rel_prods .slide_wrap .prod .thumb:hover span {
                    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
                    filter: alpha(opacity=50);
                    -moz-opacity: 0.5;
                    -khtml-opacity: 0.5;
                    opacity: 0.5;
                }

            .rel_prods .slide_wrap .prod h2.title {
                float: left;
                display: block;
                height: 40px;
                line-height: 20px;
                width: 160px;
                margin: 4px 0 0 0;
                color: #353434;
                text-align: center;
                font-size: 12px;
                padding: 0;
                overflow: hidden;
            }

                .rel_prods .slide_wrap .prod h2.title a {
                    color: #353434;
                }

                    .rel_prods .slide_wrap .prod h2.title a:hover {
                        color: #336c1d;
                    }

/* Download */
.dl_blocks {
    float: left;
    width: 570px;
    padding: 14px;
}

    .dl_blocks .dl {
        float: left;
        width: 100%;
        margin: 0;
        padding: 10px 0;
    }

        .dl_blocks .dl h2.title {
            float: left;
            display: block;
            width: 480px;
            color: #282727;
            font-size: 12px;
            font-weight: normal;
            line-height: 22px;
        }

            .dl_blocks .dl h2.title a {
                color: #282727;
            }

                .dl_blocks .dl h2.title a:hover {
                    color: #eeaa1a;
                }

        .dl_blocks .dl .btn_dl {
            float: left;
            display: block;
            width: 60px;
            color: #5c6460;
            padding: 0 25px 0 5px;
            font-size: 12px;
            font-weight: normal;
            line-height: 22px;
            background: url(../images/icon_pdf.png) right center no-repeat;
            text-decoration: underline;
        }

            .dl_blocks .dl .btn_dl:hover {
                color: #eeaa1a;
            }



/* Contact */
.contact {
    float: left;
    width: 580px;
    padding: 9px;
}

    .contact .c_map {
        float: left;
        width: 578px;
        height: 138px;
        border: 1px solid #d3d0d0;
    }

    .contact .c_info {
        float: left;
        width: 100%;
        margin: 0;
        padding: 20px 0;
        list-style: none;
    }

        .contact .c_info li {
            color: #282727;
            line-height: 22px;
            padding: 3px 0 3px 25px;
        }

            .contact .c_info li a {
                color: #282727;
            }

                .contact .c_info li a:hover {
                    color: #ea7c1b;
                }

            .contact .c_info li.icon1 {
                background: url(../images/icon1.png) left 5px no-repeat;
                text-transform: uppercase;
                font-weight: bold;
            }

            .contact .c_info li.icon2 {
                background: url(../images/icon2.png) left 5px no-repeat;
            }

            .contact .c_info li.icon3 {
                background: url(../images/icon3.png) left 5px no-repeat;
            }

            .contact .c_info li.icon4 {
                background: url(../images/icon4.png) left 5px no-repeat;
            }

    .contact .frm_contact {
        float: left;
        width: 100%;
        padding: 20px 0;
        background: url(../images/line3.png) left top repeat-x;
    }

        .contact .frm_contact .frm {
            float: left;
            width: 100%;
            padding: 5px 0;
        }

        .contact .frm_contact label {
            float: left;
            display: block;
            width: 100px;
            margin: 0 10px 0 0;
            color: #282727;
            line-height: 30px;
        }

        .contact .frm_contact .TextBoxField {
            margin: 0;
            border: 1px solid #e3e3e3;
            padding: 4px 9px;
            height: 20px;
            width: 450px;
            float: left;
            line-height: 20px;
            font-size: 12px;
            color: #282727;
            font-family: Arial, Helvetica, sans-serif;
            background: #fff;
        }

        .contact .frm_contact textarea {
            margin: 0;
            border: 1px solid #e3e3e3;
            padding: 9px;
            height: 80px;
            width: 450px;
            float: left;
            line-height: 20px;
            font-size: 12px;
            color: #282727;
            font-family: Arial, Helvetica, sans-serif;
            overflow: auto;
            resize: none;
            background: #fff;
        }

            .contact .frm_contact .TextBoxField:focus,
            .contact .frm_contact textarea:focus {
                border: 1px solid #282727;
            }

        .contact .frm_contact .FormButton {
            margin: 0;
            border: none;
            padding: 0;
            height: 30px;
            width: 80px;
            text-align: center;
            border-radius: 3px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            float: right;
            line-height: 30px;
            font-size: 12px;
            color: #fff;
            text-transform: uppercase;
            background: #e8b343;
            cursor: pointer;
            transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
        }

            .contact .frm_contact .FormButton:hover {
                background: #e4a216;
            }


/* Bottom */
#bottom {
    float: left;
    width: 100%;
}

    #bottom .block {
        width: 235px;
        margin: 0 10px 0 0;
        float: left;
        border: 1px solid #d7d4d4;
    }

        #bottom .block.nomarginright {
            float: right;
        }

        #bottom .block .header {
            float: left;
            width: 215px;
            padding: 0 10px;
            border-bottom: 1px solid #d7d4d4;
            background: url(../images/bg_head1.png) repeat-x;
            height: 34px;
            overflow: hidden;
        }

            #bottom .block .header span {
                background: url(../images/bullet5.png) 0 center no-repeat;
                line-height: 34px;
                padding: 0 0 0 20px;
                color: #353434;
                font-weight: bold;
                font-size: 12px;
            }

        #bottom .block .content {
            float: left;
            width: 215px;
            padding: 10px;
            height: 110px;
            overflow: hidden;
        }

        #bottom .block .list {
            float: left;
            width: 100%;
            margin: 0;
            padding: 0;
            list-style: none;
            height: 110px;
            overflow: hidden;
        }

            #bottom .block .list li {
                height: 22px;
                line-height: 22px;
                overflow: hidden;
            }

                #bottom .block .list li a {
                    display: block;
                    background: url(../images/bullet3.png) 0 center no-repeat;
                    padding: 0 0 0 10px;
                    height: 22px;
                    line-height: 22px;
                    overflow: hidden;
                    color: #666;
                }

                #bottom .block .list li:hover a,
                #bottom .block .list li.CMSListMenuHighlightedLI a {
                    background: url(../images/bullet3_h1.png) 0 center no-repeat;
                    color: #336c1d;
                }

/* Footer */
#footer_menu {
    float: left;
    width: 100%;
    background: #336c1d;
    overflow: hidden;
    position: relative;
}

    #footer_menu ul {
        clear: left;
        float: left;
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
        left: 50%;
        text-align: center;
    }

        #footer_menu ul li {
            display: block;
            float: left;
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
            right: 50%;
            background: url(../images/line.png) right center no-repeat;
        }

            #footer_menu ul li.last {
                background: none;
            }

            #footer_menu ul li a {
                display: block;
                padding: 0 20px;
                color: #fff;
                text-decoration: none;
                line-height: 30px;
                font-weight: bold;
            }

            #footer_menu ul li:hover a,
            #footer_menu ul li.CMSListMenuHighlightedLI a {
                color: #15ee85;
            }

/* Pagination */
.PagerControl {
    text-align: center;
    color: #592608;
    float: left;
    margin: 0;
    width: 100%;
    padding: 20px 0;
    font-size: 12px;
    line-height: 20px;
}

.SelectedPrev,
a.UnselectedNext,
span.SelectedPage,
a.UnselectedPage {
    padding: 3px 9px;
    color: #592608;
    display: inline-block;
    background: #cfcdcd;
    margin: 1px;
}

a.SelectedPrev,
a.UnselectedNext {
    padding: 3px 9px;
    display: inline-block;
    background: #cfcdcd;
}

    .SelectedPrev:hover,
    a.UnselectedNext:hover,
    span.SelectedPage,
    a.UnselectedPage:hover {
        color: #336c1d;
        background: #b1b1b1;
    }



/*===== Footer =====*/

#footer {
    float: left;
    width: 960px;
    color: #7b7979;
    margin: 0;
    padding: 0 20px;
}

    #footer .info {
        float: left;
        font-size: 12px;
        color: #7b7979;
        line-height: 24px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

        #footer .info a {
            color: #7b7979;
        }

            #footer .info a:hover {
                color: #336c1d;
            }

.dn_license {
    height: 24px;
    line-height: 24px;
    display: block;
    margin: 0 400px;
    float: left;
    padding: 0 0 20px 0;
    width: 160px;
    text-align: center;
}

    .dn_license span {
        display: inline-block;
        font-family: Tahoma;
        float: left;
        *display: inline; /*Fix ie6*/
        font-size: 1em;
        margin-right: 5px;
        color: #656363;
        font-weight: bold;
    }

    .dn_license img {
        border: none;
        float: left;
        margin-top: 0px;
        *display: inline; /*Fix ie6*/
        padding-top: 3px;
    }

    .dn_license a {
        color: #656363;
    }

        .dn_license a:hover {
            color: #336c1d;
        }





/* IE10-specific styles */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
}

/* Style for Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) {
}

@media handheld, only screen and (max-device-width: 1024px) and (min-device-width: 320px) {
    * {
        -webkit-appearance: none;
    }

    #social {
        display: none !important;
    }
}
