/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-size: 18px;
    line-height: 1.4;
    font-family: Tahoma,Verdana,Segoe,sans-serif;
    direction:rtl;
    text-align:right;
    position: relative;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

















/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.header_wrapper{
    width:100%;
    height:88px;
    background-image:url('../images/headerbg.png');
    position:fixed;
    z-index:2000;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    display:none;
    opacity:1;
}

.header_wrapper > header {
    width:1000px;
    height:100%;
    margin:0 auto;
    
    
}

.header_wrapper > header > .logo{
    float:left;
    display:block;
    margin-top:15px;
    width: 212px;
    height: 104px;
    display: block;
    
}

.header_wrapper > header > .logo > img{
    max-width:100%;
}

.open_side_menu{
    font-size: 43px;
    float: left;
    color: #314B6C;
    margin-top: 4px;
    margin-left: 20px;
    display: none;
}

.call_me_phone{
    float: left;
    width: 37px;
    height: 39px;
    margin-top: 5px;
    display: none;
    color: #314B6C;
    font-size: 43px;
    margin-right: 20px;
    
}

header > nav{
    min-width: 65.529%;
    float:right;
    margin-top:35px;
    position:relative;
    text-align:right;
}



header > nav > ul{
    width:100%;
    float:right;
}

header > nav > ul > li{
    float:right;
    position: relative;
    height:30px;
    white-space: nowrap;
}

header > nav > ul > li > a{
    display:block;
    padding:0px 13px;
    color:#555555;
   
    text-decoration: none;
    font-size:20px;
}

header > nav > ul > li:hover > a{color:#16aacd;}
header > nav > ul > li > .selected{color:#16aacd;}
header > nav > ul > li:hover > ul{opacity:1;display:block;}
header > nav > ul > li > ul{
    min-width: 165px;
    overflow:visible;
    position: absolute;
    top: 30px;
    right: 0px;
    padding: 0px 20px;
    margin: 0px;
    border-radius: 10px;
    z-index: 999999999;
    background-color: #FFF;
    box-shadow: 0px 0px 3px 1px #A3A3A3;
    opacity:0;
    transition: all 300ms ease 0s;
    min-height: 100px;
    display:none;
}

header > nav > ul > li > ul:after{
    background-image: url("../images/triangle_up.png");
    width: 19px;
    height: 8px;
    position: absolute;
    right: 15px;
    top: -8px;
    content: " ";
}

header > nav > ul > li > ul > li{
    width:100%;
    height:39px;
    position: relative;
    white-space: nowrap;
}

header > nav > ul > li > ul > li > a{
    display:block;
    padding:10px 13px;
    color:#555555;
   
    font-size:18px;
    text-decoration: none;
    border-bottom:1px solid #DADADA;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.wrapper{
    width:100%;
    position: relative;
    overflow:hidden;
    z-index: 1000;
}

.full_bg{
    background-image:url('../images/colorodbg.jpg');
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    z-index:-10;
}



.fullscreen_logo{
    width:324px;
    margin:0 auto;
    top:10px;
    left:0;
    right:0;
    position: absolute;
    z-index:1001;
}

.fullscreen_logo > img{
    width:100%;
}



.scotch-panel-canvas{
    z-index: 1000;
}

.main_arrow_left{
   background-image:url('../images/arrow_left.png'); 
   width:40px;
   height:56px;
   position: absolute;
   top:40vh;
   left:0;
   z-index:12000;
   cursor:pointer;
}

.main_arrow_right{
   background-image:url('../images/arrow_right.png'); 
   width:40px;
   height:56px;
   position: absolute;
   top:40vh;
   right:-1px;
   z-index:12000;
   cursor:pointer;
}



/* ==========================================================================
   Author's custom styles
   ========================================================================== */
#scotch-panel {
  display: none;
}
#site-wrapper {
  padding-top: 50px;
}
.wrapper .scotch-panel-canvas {
  z-index: 10000;
}
#fixed-nav {
    background-image:url('../images/menu_close.png');
    background-size:100% auto;
    position: fixed;
    height: 100%; 
    top: 0;
    left: 0;
    display:none;
    width: 60%;
     padding-top: 20px; 
    overflow:scroll;
    z-index: 999999999;
    
}
#fixed-nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    
}

#fixed-nav > .selected{
    background-image:url('../images/side_menu_bg_selected.png');
}

#fixed-nav > ul > li{
    
    
}

#fixed-nav >  ul > li > a {
    display: block;
    width: 95%;
    height: 50px;
    line-height: 50px;
    background: transparent;
    color: #777777;
    text-decoration: none;
    padding-right:5%;
    border-bottom:1px solid #b7b7b7;
    border-top:1px solid #fff;
    font-size:16px;
    font-weight:bold;
}

#fixed-nav >  ul > li > a > span{
    width:21px;
    height:10px;
    background-image:url('../images/arrow_down_1.png');
    display:inline-block;
    margin-right:20px;
}

#fixed-nav >  ul > li:first-child > a{
    border-top:none;
}


#fixed-nav >  ul > li > ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    display:none;
    background-image:inherit;
    background-size:100% auto;
    max-height: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
#fixed-nav > ul > .open_side > a {
    color:#000;
}

#fixed-nav > ul > .open_side > a > span{
    background-image:url('../images/arrow_down_black.png');
    width:19px;
}


#fixed-nav > ul > .open_side{
    background-image:url('../images/menu_side_open.png');
    background-size:100% auto; 
}

#fixed-nav > ul > .open_side > ul{
    display:block;
    max-height: none;
}

#fixed-nav >  ul > li > ul > li{
   
    background-size:100% auto;
  
}

#fixed-nav >  ul > li > ul > li:last-child{
    border-bottom:none;
}

#fixed-nav >  ul > li > ul > li > a{
    
    display: block;
    width: 85%;
    height: 50px;
    line-height: 50px;
    background: transparent;
    color: #777777;
    text-decoration: none;
    padding-right:15%;
     border-bottom:1px solid #b7b7b7;
     font-size:16px;
    font-weight:bold;
    border-top:1px solid #fff;
}

#fixed-nav a:hover{
    color:#000;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.bg_wrapper{
    width:100%;
    height:700px;
    position: relative;
    float:right;
    overflow:hidden;
    z-index:-1;
}

.bg_wrapper > .slide{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    z-index:-15;
    display:none;
    background-size:cover;
    background-position: center center;
}

.bg_wrapper > .slide > img{
    width:100%;
    height:100%;
}

.bg_wrapper_small{
    width:100%;
    height:336px;
    position: relative;
    float:right;
    overflow:hidden;
}

.bg_wrapper_small > .smallbanner{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    display:block;
    z-index:10;
}


.bg_wrapper > .slide:first-child{
    display:block;
     z-index:-1;
}

.bg_wrapper_narrow{
    width:100%;
    height:371px;
    position: relative;
    float:right;
    overflow:hidden;
}

.bg_wrapper_narrow > .slide{
    width:100%;
    height:371px;
    position: absolute;
    top:-100%;
    left:0;
    display:none;
    background-color:#fff;
}

.bg_wrapper_narrow > .slide:first-child{
    display:block;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.home_page_menu{
    width:100%;
    float:right;
    height:62px;
    background-image:url('../images/menu_shadow_bg.png');
    position:relative;
    margin-top:-62px;
}

.home_page_menu_content{
    width:1020px;
    margin:0 auto;
    height:100%;
}


.home_page_menu_content > ul{
    width:100%;
    list-style: none;
}

.home_page_menu_content > ul > li{
    float:right;
    height:100%;
    position:relative;
    min-width:85px;
    max-width:100px;
    text-align:center;
}

.home_page_menu_content > ul > li > a{
    display:block;
    padding: 10px 14px;
    position:relative;
    font-weight:bold;
    font-size:0.8333333333333333em;
    color:#fff;
    text-decoration:none;
    z-index:100;
    
    
}

.home_page_menu_content > ul > li > .bg{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#fff;
    opacity:0.7;
    display:none;
    z-index:20;
}

.home_page_menu_content > ul > li:hover > .bg{ display:block;}
.home_page_menu_content > ul > .selected > .bg{ display:block;}
.home_page_menu_content > ul > li:hover > a{ color:#000;}
.home_page_menu_content > ul > .selected > a{ color:#000;}
.home_page_menu_content > ul > li:hover > ul{display:block;}

.home_page_menu_content > ul > li > ul{
    width:225px;
    min-height:40px;
    position: absolute;
    bottom:101%;
    list-style:none;
    border-top:7px solid #454545;
    padding:0;
    margin:0;
    display:none;
    z-index:100000;
}

.home_page_menu_content > ul > li > ul > li{
    height:40px;
    float:right;
    width:100%;
    position: relative;
    text-align:right;
    border-top:1px solid #9a9a9a;
    border-bottom:1px solid #fff;
}

.home_page_menu_content > ul > li > ul > li > .bg{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#fff;
    opacity:0.8;
}

.home_page_menu_content > ul > li > ul > li > a{
    display:block;
    padding:10px 20px;
    position:relative;
    font-weight:bold;
    font-size:14px;
    color:#454545;
    text-decoration:none;
    z-index:100;
}

.home_page_menu_content > ul > li > ul > li:hover > .bg{
    opacity:1;
}
.home_page_menu_content > ul > li > ul > .selected > .bg{
     opacity:1;
}
.home_page_menu_content > ul > li > ul > li:hover > a{
    color:#000;
}
.home_page_menu_content > ul > li > ul > .selected > a{
    color:#000;
}
    





/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.home_page_bar{
    width:100%;
    float:right;
    height:97px;
    background-color:#f6f6f6;
    position:relative;
    box-shadow: 0 5px 8px 1px #dddddb;
    position: relative;
    z-index:20;
}

.side_icon{
    position: fixed;
    top:200px;
    left:5px;
    background-image:url('../images/since_1992.png');
    z-index:10000;
    width:82px;
    height:77px;
}


.home_page_bar_content{
    width:1026px;
    margin:0 auto;
    height:100%;
}

.home_page_bar_content > .col_one{
    width:375px;
    
    float:right;
    height:100%;
    border-left:1px solid #cfcfcf;
}

.home_page_bar_content > .col_one > div{
    text-align:right;
    display: block;
    height: 52px;
    margin-top: 6px;
    width: 95%;
    cursor:pointer;
    margin-right:1%;
    line-height:24px;
    
}
.home_page_bar_content > .col_one > div > .small_text{
    font-size:19px;
    color:#000;
    font-weight:bold;
    width:100%;
    margin-top: 15px;
}


.home_page_bar_content > .col_two{
    width:430px;
    float:right;
    border-left:1px solid #cfcfcf;
    height:100%;
    text-align:center;
}

.home_page_bar_content > .col_two > div{
    color:#000;
    font-weight:bold;
    margin-top:20px;
    font-size:22px;
}

.home_page_bar_content > .col_two > div input[type="text"]{
    float:right;
    width:308px;
    padding-right:12px;
    height:36px;
    border:0;
    border-top:1px solid #c2c2c2;
    border-right:1px solid #c2c2c2;
    background-color:#d6d6d6;
    border-bottom:1px solid #fff;
    margin-right:30px;
    font-size:16px;
   
}



.home_page_bar_content > .col_two > div input[type="submit"]{
    float:right;
    float:right;
    width:39px;
    height:40px;
    border:0;
    background-image:url('../images/mag_submit.png');
}

.home_page_bar_content > .col_twonew input[type="text"]{
    float:right;
    width:237px;
    padding-right:12px;
    height:40px;
    border:0;
    margin-right:41px;
    font-size:16px;
    background-image:url('../images/b3.png');
    background-size:100% 100%;
    margin-top:8px;
}

.home_page_bar_content > .col_twonew input[type="submit"]{
    float:right;
    float:right;
    width:80px;
    height:40px;
    margin-right:10px;
    border:0;
    background-size:100% 100%;
    background-image:url('../images/b1.png');
    margin-top:8px;
}


.home_page_bar_content > .col_three{
    width:208px;
    padding-right:11px;
    float:right;
    height:100%;
    
}
.home_page_bar_content > .col_three > .img{
    float:right;
    margin-top:19px;
}
.home_page_bar_content > .col_three > .small_text{
    float:right;
    margin-top:14px;
    font-size:14px;
    color:#000;
    margin-right:13px;
    margin-bottom:0px;
}

.home_page_bar_content > .col_three > .big_text{
    float:right;
    font-size:22px;
    font-weight:bold;
    color:#000;
    margin-right:13px;
    margin-top:-9px;
}

::-webkit-input-placeholder { color:#fff;font-size:16px;opacity:1; }
::-moz-placeholder { color:#000;font-size:16px;opacity:1;} /* firefox 19+ */
:-moz-placeholder { color:#000;font-size:16px;opacity:1;} /* firefox 19+ */
:-ms-input-placeholder { color:#fff;font-size:16px;opacity:1; } /* ie */
input:-moz-placeholder { color:#fff;font-size:16px;opacity:1; }


.home_page_bar_content > .col_twonew input::-webkit-input-placeholder { color:#656050;font-size:14px;opacity:1; }
.home_page_bar_content > .col_twonew input::-moz-placeholder { color:#656050;font-size:14px;opacity:1;} /* firefox 19+ */
.home_page_bar_content > .col_twonew input:-moz-placeholder { color:#656050;font-size:14px;opacity:1;} /* firefox 19+ */
.home_page_bar_content > .col_twonew input:-ms-input-placeholder { color:#656050;font-size:14px;opacity:1; } /* ie */
.home_page_bar_content > .col_twonew input:-moz-placeholder { color:#656050;font-size:14px;opacity:1; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.items_wrapper{
    min-height:500px;
    width:100%;
    float:Right;
    position: relative;
    z-index:60;
}

.items_content{
    width:1020px;
    margin:0 auto;
    min-height:250px;
    float:right;
    position: relative;
}

.home_items{
    border-top:none;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.cat{
    width:238px;
    height:256px;
    background-size:100% 100%;
    float:right;
    background-image:url('../images/cat_bg.png');
    display:block;
    text-decoration: none;
    font-size:0.7777em;
    color:#444444;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -ms-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    position: relative;
    z-index:100;
    margin-left:20px;
    margin-top:20px;
}

.items_content .cat:nth-child(4n){
    border-left:1px solid #fff;
    width:238px;
    margin-left:0;
}
.items_content .cat:last-child{
    border-left:1px solid #fff;
    width:238px;
    margin-left:0;
}

.items_content .cat:nth-child(1){border-top:1px solid #bcbcbc;}
.items_content .cat:nth-child(2){border-top:1px solid #bcbcbc;}
.items_content .cat:nth-child(3){border-top:1px solid #bcbcbc;}
.items_content .cat:nth-child(4){border-top:1px solid #bcbcbc;}
.home_items .cat:nth-child(1){border-top:none;}
.home_items .cat:nth-child(2){border-top:none;}
.home_items .cat:nth-child(3){border-top:none;}
.home_items .cat:nth-child(4){border-top:none;}



.cat > .img_holder{
    position: relative;
    width:100%;
    height:83%;
    float:right;
}

.cat > .img_holder > img{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto auto;
    width:100%;
    height:100%;
}

.cat > .text{
    position: relative;
    width:99%;
    height:15%;
    float:Right;
    margin-top:1%;
   
}

.cat > .text > .text_bg{
    position: absolute;
    width:100%;
    height:100%;
    opacity:0.5;
    background-color:#fff;
    top:0;
    left:0;
    z-index:1;
    -webkit-transition: all 0.7s ease-in;
    -moz-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    -ms-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.cat > .text > .cat_name{
    float:right;
    font-size:14px;
    color:#444444;
    font-weight:bold;
    margin-right:4%;
    margin-top:4%;
    position: relative;
    z-index:10;
    -webkit-transition: all 0.7s ease-in;
    -moz-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    -ms-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.cat > .text > .arrow{
    background-image:url('../images/item_side_arrows.png');
    width:38px;
    height:38px;
    background-position: 0px 0px;
    float:left;
    left:0.5px;
    top:-1px;
    position: absolute;
    z-index:10;
}

.cat > .text > .arrow_2{
    background-image:url('../images/item_side_arrows.png');
    width:38px;
    height:38px;
    background-position: 0px 38px;
    float:left;
    left:0.5px;
    top:-1px;
    position: absolute;
    z-index:11;
    opacity:0;
    -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.cat:hover > .text > .arrow_2{
    background-position: 0px 38px;
    opacity:1;
}

.cat:hover > .text > .text_bg{
    opacity:1;
}

.cat:hover{
    box-shadow: 0px 0px 14px 6px #bfbfbf;
    z-index:150;
}
.cat:hover > .text > .cat_name{
    color:#000;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.home_page_content_wrapper{
    width:100%;
    height:360px;
    padding-top:15px;
    float:right;
    position: relative;
    background-size: 100% 100%;
    margin-top:0px;
    background-image:url('../images/home_bg.png');
    position: relative;
  
    
}

.home_page_content{
    width:1020px;
    min-height:375px;
    margin:35px auto;
    margin-bottom:0px;
    display:block;
   
}

.home_page_content > .col_one{
    float:right;
    width:46.09803921568627%;
    height:375px;
    margin-left:0px;
    margin-top:0px;
    display:block;
    text-decoration: none;
}

.home_page_content > .col_one > h1{
    width:100%;
    float:right;
    color:#7d2b1b;
    font-size:18px;
    font-weight:bold;
    margin-bottom:10px;
}

.home_page_content > .col_one > div{
    width:100%;
    float:right;
    height:128px;
   
    margin-bottom:10px;
}


.home_page_content > hr{
    float:right;
    height:293px;
    width:1px;
    border-left:1px solid #cbcbcb;
    background-color:#fff;
    margin-top:-3px;
    margin:0% 3%;
}

.home_page_content > .col_twp{
    width:46.0078431372549%;
    float:right;
    height:100%;
    padding-right:0%;
    margin-top:-10px;
}

.home_page_content > .col_twp > h2{
    width:100%;
    float:right;
    color:#7d2b1b;
    font-size:16px;
    font-weight:bold;
    margin-bottom:20px;
    margin-top:5px;
}

.home_page_content > .col_twp > div{
    width:100%;
    float:right;
    color:#777777;
    font-size:14px;
    line-height:1.21;
    margin-bottom:10px;
}


.home_page_content > .col_twp > p{
    width:100%;
    float:right;
    color:#000000;
    font-size:14px;
   
}

.home_page_content > .col_twp > p > span{
    float:right;
}
    
.home_page_content > .col_twp > p > i{
    color:#222222;
    font-size:24px;
    float:right;
    margin-right:10px;
    width:19px;
    height:19px;
    background-position: 19px 0px;
    background-image:url('../images/small_arrows_3.png');
     -webkit-transition: margin-right ease-out 500ms;
    -moz-transition: margin-right ease-out 500ms;
    -o-transition: margin-right ease-out 500ms;
    transition: margin-right ease-out 500ms;
    margin-top: 0px;
    
}
.home_page_content:hover > .col_twp > p > i{
    background-position: 0px 0px;
    margin-right:50px;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.fast_led_wrapper{
    width:100%;
    height:94px;
    padding-top:20px;
    float:right;
    position: relative;
    background-size: 100% 100%;
    background-image:url('../images/led_bg.png');
    position: relative;
  
    
}

.fast_led_content{
    width:1020px;
    min-height:94px;
    margin:0px auto;
    margin-bottom:0px;
    display:block;
    
   
}

.fl_he{
    font-size:19px;
    width:100%;
    float:Right;
    height:30px;
    color:#000;
}

.fl_inputs{
    width:100%;
    float:right;
}

.fl_inputs input[type="text"]{
    float:Right;
    height:31px;
    width:14%;
    padding-right:13px;
    margin-left:1%;
    color:#000;
    font-size:16px;
    border:0;
    border-top:1px solid #c2c2c2;
    border-right:1px solid #c2c2c2;
    background-color:#d6d6d6;
    border-bottom:1px solid #fff;
}
.fl_inputs input[type="text"]:focus{
    border:1px solid #f2e35d;
}

.fl_inputs textarea{
    float:Right;
    height:25px;
    width:38%;
    padding-right:13px;
    margin-left:1%;
    color:#000;
    font-size:16px;
    border:0;
    border-top:1px solid #c2c2c2;
    border-right:1px solid #c2c2c2;
    background-color:#d6d6d6;
    border-bottom:1px solid #fff;
    resize:none;
    padding-top:6px;
}

.fl_inputs textarea:focus{
    border:1px solid #f2e35d;
}


.fl_inputs input[type="submit"]{
    width:8%;
    height:33px;
    float:right;
    background-color:#fff;
    border:0;
    color:#000;
    font-size:16px;
    box-shadow: 0px 0px 6px 4px #bebebe;
}

.fl_inputs input[type="submit"]:hover{
    box-shadow: 0px 0px 8px 6px #aeaeae;
     -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.footer_wrapper{
    width:100%;
    height:430px;
    float:Right;
    margin-top:10px;
}
.footer_content{
    width:1020px;
    height:100%;
    margin:0px auto;
}
.ftr_hr{
    width:100%;
    float:Right;
    height:1px;
    background-color:#dddddd;
}

.footer_facebook{
    margin:0 auto;
    
}

.credit{
    float:left;
}

.ftr_text{
    color:#000;
    font-size:0.7777em;
    float:Right;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.content_page_wrapper{
    width: 100%;
    min-height: 250px;
    padding-top: 13px;
    float: right;
    position: relative;
    padding-bottom: 40px;

}


.content_page{
    width:1020px;
    min-height: 250px;
    margin: 0 auto;

}


.content_page_title{
    font-size:19px;
    font-weight:bold;
    color:#000000;
    float:right;
    width:100%;
    margin:5px 0px;
    min-height:44px;
    overflow:hidden;
}

.content_page_content{
    width:100%;
    float:right;
    font-size:14px;
    color:#000;
    margin-top:0px;
    overflow:hidden;
}


.content_page_content img{
    max-width:100%;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.catalog_page_wrapper{
    width: 100%;
    min-height: 250px;
    padding-top: 13px;
    float: right;
    position: relative;
    padding-bottom: 40px;

}


.catalog_page{
    width:1020px;
    min-height: 250px;
    margin: 0 auto;

}


.catalog_page_title{
    font-size:19px;
    font-weight:bold;
    color:#000000;
    float:right;
    width:100%;
    margin:5px 0px;
    min-height:44px;
    overflow:hidden;
}

.catalog_page_content{
    width:100%;
    float:right;
    font-size:14px;
    color:#000;
    margin-top:0px;
}


.catalog_page_content img{
    max-width:100%;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.item_box{
    width: 238px;
    height: 314px;
    float: right;
    background-image: url("../images/item_bg.png");
    display: block;
    text-decoration: none;
    font-size: 0.7777em;
    color: #444;
    transition: all 0.4s ease-in 0s;
    position: relative;
    z-index: 100;
    margin-left: 20px;
    border: 1px solid rgb(188, 188, 188);
    border-left: 0;
    border-bottom: 0;
    margin-top:20px;
}

.items_content .item_box:nth-child(4n){
    border-left:1px solid #fff;
    width:238px;
    margin-left:0px;
}
.items_content .item_box:last-child{
    border-left:1px solid #fff;
    width:238px;
    margin-left:0px;
}

.items_content .item_box:nth-child(1){border-top:1px solid #bcbcbc;}
.items_content .item_box:nth-child(2){border-top:1px solid #bcbcbc;}
.items_content .item_box:nth-child(3){border-top:1px solid #bcbcbc;}
.items_content .item_box:nth-child(4){border-top:1px solid #bcbcbc;}



.item_box > .img_holder{
    position: relative;
    width:100%;
    height:69%;
    float:right;
    display:block;
    overflow:hidden;
}

.item_box > .img_holder > img{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto auto;
    width: 230px !important;
    height: 100%;
}

.item_box > .base_text{
    width:100%;
    float:Right;
}

.item_box > .base_text > .s_text{
    width:100%;
    float:Right;
    text-align:Center;
    font-size:16px;
    color:#805e23;
}


.item_box > .base_text > .price{
    width:100%;
    float:Right;
    text-align:Center;
    font-size:11px;
    color:#805e23;
}

.black{color:#000;}

.item_box > .text{
    position: relative;
    width:99%;
    height:13.418%;
    float:Right;
    margin-top:6%;
}

.item_box > .text > .text_bg_right{
    position: absolute;
    width:49%;
    height:100%;
    opacity:0.5;
    background-color:#fff;
    top:0;
    right:0;
    z-index:1;
    -webkit-transition: all 0.7s ease-in;
    -moz-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    -ms-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}
.item_box > .text > .text_bg_left{
    position: absolute;
    width:50%;
    height:100%;
    opacity:0.5;
    background-color:#fff;
    top:0;
    left:0;
    z-index:1;
    -webkit-transition: all 0.7s ease-in;
    -moz-transition: all 0.7s ease-in;
    -o-transition: all 0.7s ease-in;
    -ms-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.item_box > .text > .item_enter{
    width:40%;
    height:95%;
    float:right;
    display:block;
    font-size:12px;
    color:#000;
    position: relative;
    z-index:10;
    padding-top:5%;
    padding-right:10%;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.mag{
    background-image: url("../images/mag.png");
    background-position: 0 0;
    float: left;
    height: 12px;
    left: 11%;
    position: absolute;
    top: 30%;
    width: 14px;
    z-index: 10;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.mag_hover{
    background-image: url("../images/mag.png");
    background-position: 0px 12px;
    float: left;
    height: 12px;
    left: 11%;
    position: absolute;
    top: 30%;
    width: 14px;
    z-index: 11;
    opacity:0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    
}

.item_box > .text > .item_enter_left{
    width:40%;
    height:95%;
    float:right;
    display:block;
    font-size:12px;
    color:#000;
    position: relative;
    z-index:10;
    padding-top:5%;
    padding-left:10%;
    text-decoration: none;
    text-align:left;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.cartd{
    background-image: url("../images/cart.png");
    background-position: 0 0;
    float: left;
    height: 15px;
    right: 11%;
    position: absolute;
    top: 26%;
    width: 17px !important;
    z-index: 10;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.cartd_hover{
    background-image: url("../images/cart.png");
    background-position: 0px 15px;
    float: left;
    height: 15px;
    right: 11%;
    position: absolute;
    top: 26%;
    width: 17px;
    z-index: 11;
    opacity:0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    
}


.item_box:hover > .text > .text_bg_left{opacity:1;}
.item_box:hover > .text > .text_bg_right{opacity:1;}
.item_box > .text > .item_enter:hover > .mag{opacity:0;}
.item_box > .text > .item_enter:hover > .mag_hover{opacity:1;}
.item_box > .text > .item_enter:hover{color:#805e23;}
.item_box > .text > .item_enter_left:hover > .cart{opacity:0;}
.item_box > .text > .item_enter_left:hover > .cart_hover{opacity:1;}
.item_box > .text > .item_enter_left:hover{color:#805e23;}

.item_box:hover{
    box-shadow: 0px 0px 14px 6px #bfbfbf;
    z-index:150;
}
.item_box:hover > .text > .cat_name{
    color:#000;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.page_headline{
    width:100%;
    color:#989898;
    font-size:19px;
    font-weight:bold;
    padding-top:5px;
    min-height:42px;
    float:right;
    position: relative;
}
.page_headline > p {
    color:#000;
    font-size:19px;
    font-weight:bold;
    display:inline;
    
    
}
.page_headline h1 {
    display: inline;
    font-size: 19px;
}

.page_headline > a{
    display:inline;
    text-decoration: none;
    color:#989898;
    font-size:19px;
    font-weight:bold
}

.page_headline hr{
    width:100%;
    float:right;
    border-bottom:1px solid #fff;
    background-color:#989898;
    position: absolute;
    bottom:0;
    left:0;
    padding:0;
    margin:0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.item_left{
    width:625px;
    height:560px;
    float:left;
    background-size:100% auto;
    background-image:url('../images/item_image_bg.png');
    position: relative;
}

.item_left_box_image_holder{
    position: absolute;
    top:15px;
    left:12px;
    
    margin:auto auto;
    background-color:#fff;
    width:603px;
    height:525px;
    box-shadow:0px 0px 10px 6px #dedede;
}

.item_left_box_image_holder .content_holder{
    position: relative;
    width:100%;
    height:100%;
}

.item_left_box_image_holder .content_holder .right_side{
    float:right;
    width:90px;
    box-shadow:-2px 0px 5px 0px #e8e8e8;
    height:100%;
}

.item_left_box_image_holder .content_holder .right_side .small_image_holder{
    width:100%;
    height:65px;
    float:right;
    position: relative;
    cursor:pointer;
    
}

.imgLiquid img{
    max-width:100% !important;
    visibility: visible !important;
}

.item_left_box_image_holder .content_holder .right_side .small_image_holder img{
    max-width:95%;
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto auto;
    max-width:46px;
    max-height:51px;
}

.item_left_box_image_holder .content_holder .right_side .small_image_holder div{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto auto;
    background-image:url('../images/youtube_small.png');
    width:21px;
    height:17px;
}

.item_left_box_image_holder .content_holder .left_side{
    text-align:center;
    width:513px;
    height:525px;
    float:left;
    position: relative;
}

.item_left_box_image_holder .content_holder .left_side .on_slae{
    position: absolute;
    top:-5px;
    left:-5px;
    width:87px;
    height:86px;
    background-image:url('../images/on_sale.png');
    z-index:10000;
}

.item_left_box_image_holder .content_holder .left_side .plus{
    position: absolute;
    bottom: 13px;
    left: 7px;
    width:57px;
    height:57px;
    background-image:url('../images/mag_item.png');
    pointer-events: none;
}

.item_left_box_image_holder .content_holder .left_side ul{
    width:100%;
    height:100%;
    position: relative;
    padding:0;
    margin:0;
    list-style:none;
}

.item_left_box_image_holder .content_holder .left_side ul li{
    width:100%;
    height:100%;
    display:none;
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto auto;
    padding:0;
    margin:0;
    list-style:none;
}

.item_left_box_image_holder .content_holder .left_side ul li:first-child{display:block;position: relative;}

.item_left_box_image_holder .content_holder .left_side ul li a {
    display:block;
    width:100%;
    height:100%;
    position: relative;
}

.item_left_box_image_holder .content_holder .left_side ul li a img{
    max-height: 498px;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    width: 497px;
}

.item_left_box_image_holder .content_holder .left_side ul li a div {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto auto;
    background-image:url('../images/youtube_big.png');
    width:98px;
    height:73px;
    z-index:100;
}




/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.item_right{
   width:395px;
   float:right;
   min-height:560px;
   
}

.item_right .right_text{
    width:100%;
    min-height:1/**90**/px;
    margin-top:30px;
    float:right;
    font-size:14px;
    color:#000;
}

.item_right .right_ques{
    width:100%;
    min-height:87px;
    float:right;
}

.item_right .right_ques a{
    width:203px;
    height:50px;
    background-image:url('../images/ask_about_prod.png');
    display:block;
}

.item_right .right_price{
    width:89%;
    min-height:41px;
    float:right;
    text-align:left;
    font-size:18px;
    color:#805e23;
    
}



.item_right .right_buy{
    width:95%;
    
    float:right;
    text-align:left;
}

.item_right .right_buy a{
    width:260px;
    height:59px;
    background-image:url('../images/add_to_cart.png');
    display:block;
    float:left;
}

.g_hr{
    width:100%;
    background-color:#fff;
    height:1px;
    float:right;
    border-top:1px solid #BCBCBC;
    padding:0;
    margin:0;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.ui-autocomplete-category {
    font-weight: bold;
    font-size: 1em;
    padding: .2em .2em;
    margin: .4em 0 .2em;
    line-height: 1.5;
    color: #069;
    border-bottom: 2px solid #069;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.warp_plusone{
	position: absolute;
	width: 200px;
	left: 0px;
	right: 0px;
	margin: 20px auto;
	padding-right: 800px;
}