
/*//////////////////////////// Media Query Debugging //////////////////////////////*/

body:before {
    display: none;
    content: "XS";
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 5px 8px 5px 10px;
    position: fixed;
    bottom: -1px;
    right: -1px;
    border-radius: 5px 0 0 0 ;
    z-index: 999999;
    border: 1px solid #fff;
}


@media (max-width: 767px) { /*XS*/
    body:before {
        content: "XS";
    }
}
@media (min-width: 640px) and (max-width: 767px) {  /*SMLS  SX Labscape*/
    body:before {
        content: "XS-LS";
    }
}

@media (min-width: 768px) and (max-width: 991px) {  /*SM*/
    body:before {
        content: "SM";
    }
}

@media (min-width: 992px) and (max-width: 1199px) {  /*MD*/
    body:before {
        content: "MD";
    }
}
@media (min-width: 1200px) {  /*LG*/
    body:before {
        content: "LG";
    }
}

/*///////////////////////////////////////////////////////////////////////////*/


body {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 12px;
}

/* layout */
.layoutContainer {
    position: relative;
    width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.layoutContainer.top{
    margin-top: 20px;
}

#column-left {
    float: left;
    width: 180px;
}
#column-right {
    float: right;
    width: 180px;
}
#content {
    min-height: 400px;
    margin-bottom: 25px;
}
#column-left + #column-right + #content, #column-left + #content {
    margin-left: 195px;
}
#column-right + #content {
    margin-right: 195px;
}



/* header */
#fixedheader {
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

#head{

}


#topnav{
    width :100%;
    height:50px;
    background-color: #000000;
}

#topnav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

#topnav li{
    display: inline-block;
    float:left;
}

#topnav li > a{
    display: block;
    text-decoration: none;
    color: #FFF;
    padding: 5px 10px;
    margin-left: 5px;
    font-size: 16px;
    font-weight: normal;

    -webkit-border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    -khtml-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
    transition: all 0.5s ease-in;
}
#topnav li > a i{
    font-size: 22px;
}


#topnav li > a:hover,
#topnav li > a.active{
    background: #FFD700;
    color: #333;
    text-decoration: none;
    transition: all 0.05s ease-in;
}
#topnav #cart{
    cursor:pointer;
}

#fixedheader #topnav{
    height:0;
    transition: all 0.5s ease;
}

#fixedheader:hover #topnav{
    height:50px;
    transition: all 0.5s ease;
}



#header {
    background: #141414 url('../img/racetech-head-texture.jpg') no-repeat top right;
    height: 94px;
    padding-bottom: 4px;
    position: relative;
    /*z-index: 99;*/
}
#header .layoutContainer{
    height: 94px;
    background: url('../img/racetech-head-words.png') right center no-repeat;
}

#header #logo {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    /*height:110px;*/
}

#header #logo img{
    max-width: 300px;
}
/* menu */
#menubar{
    background: #3C3D3D url('../img/racetech-menubar.png') repeat-x top left;
}

#menubar .right{
    position: absolute;
    right: 0;
}

#menu {
    height: 38px;
    /*margin-bottom: 15px;
    padding: 0 5px;*/
    border-left:1px solid #000;

}
#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}
#menu > ul > li {
    position: relative;
    float: left;
    z-index: 20;
    /*padding: 6px 5px 3px 0;*/

}
#menu > ul > li:hover {
}
#menu > ul > li > a {
    font-size: 13px;
    color: #FFF;
    line-height: 14px;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 12px 10px 12px 10px;
    z-index: 6;
    position: relative;
    border-left:1px solid #4D4D4D;
    border-right:1px solid #000;
}
#menu > ul > li > a.active,
#menu > ul > li.ancestor > a,
#menu > ul > li:hover > a {

    color: #FFD700;
}
#menu > ul > li > div {
    display: none;
    background: #FFFFFF;
    position: absolute;
    z-index: 5;
    padding: 5px;
    border: 1px solid #000000;
    border-top:0;
    border-radius: 0 0 5px 5px;
    background: url('../img/menu.png');
}
#menu > ul > li:hover > div {
    display: table; /* for css stacking*/
}
#menu > ul > li > div > ul {
    display: table-cell;
}

html[data-useragent*='MSIE 10.0'] #menu > ul > li:hover > div {
    display: block;
}

html[data-useragent*='MSIE 10.0'] #menu > ul > li > div > ul {
    display: block;
}

#menu > ul > li ul + ul {
    padding-left: 20px;
}
#menu > ul > li ul > li > a {
    text-decoration: none;
    padding: 4px;
    color: #FFFFFF;
    display: block;
    white-space: nowrap;
    min-width: 160px;
}
#menu > ul > li ul > li > a:hover {
    background-color: #000000;
}
#menu > ul > li > div > ul > li > a {
    color: #FFFFFF;
}



#menu li .globe{
    background-image: url(../img/globeicon.png);
    background-repeat: no-repeat;
    background-position: 7px 6px;
    padding-left: 41px;
}

#menu li:hover .globe{
    background-position: 7px -28px;
}

#menu  .globalmenu ul > li > a{
    padding-left: 38px;
    background-image: url(../img/global_icons_sprite2.png);
    background-repeat: no-repeat;
}
#menu  .globalmenu ul > li > a.nz{
    background-position: 0 -70px;
}

#menu  .globalmenu ul > li > a.usa{
    background-position: 0 -101px;
}

#menu  .globalmenu ul > li > a.europe{
    background-position: 0 -38px;
}

#menu  .globalmenu ul > li > a.dealer{
    background-position: 0 -136px;
}

#menu  .globalmenu ul > li > a.aus{
    background-position: 0 -175px;
}

.breadcrumb {
    color: #bbbbbb;
    margin-bottom: 10px;
    background-color: #E8E8E8;
    padding: 4px 0;
    border-radius: 0
}
.breadcrumb a,
.breadcrumb a:visited{
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover{
    text-decoration: underline;
}
.breadcrumb .layoutContainer{
    padding-left:5px;
}







/* box category */

.box-category-heading {
    padding: 8px 10px 7px 0;
    font-family: "Open Sans Condensed", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 14px;
    color: #333;
}

ul.box-category{
    margin: 13px 0 0 0;
}

.racetechmenu ul,
ul.box-category, ul.box-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


ul.box-category > li:first-child {
    /*padding:0 8px 8px 0;*/
}
ul.box-category > li {
    /*padding: 8px 8px 8px 0;*/
}
ul.box-category > li + li {

}

.racetechmenu ul  > li > a,
ul.box-category > li > a {
    display: block;
    padding: 8px 8px 8px 8px;
    overflow:hidden;
    text-decoration: none;
    background-color: #F2F2F2;
    border-bottom: 1px solid #CCCCCC;
    color: #333;
}

ul.box-category > li ul {
    display: none;
    border-bottom: 1px solid #CCCCCC;
}

ul.box-category > li a.active {
    background-color: #FFD700;
    border-bottom: 1px solid #FFD700;
}

.racetechmenu ul > li a:hover,
ul.box-category > li a:hover{
    background-color: #FFED00;
}


ul.box-category > li a span{
    color: #999;
}
ul.box-category > li a:hover span,
ul.box-category > li a.active span{
    color: #9b8a00;
}

ul.box-category > li a.visible + ul,
ul.box-category > li a.active + ul {
    display: block;
}
ul.box-category > li ul > li {
    /*padding: 5px 5px 0 10px;*/
}
ul.box-category > li ul > li > a {
    padding: 5px 5px 5px 15px;
    background-color: #F8F8F8;
    border-top: 1px solid #E6E6E6;
    text-decoration: none;
    display: block;
    color: #333;
}

ul.box-category > li ul > li > a:first-child {
    border-top: none;
}

ul.box-category > li ul > li > a.active {
    /*font-weight: bold;*/
}






/* box filter */
ul.box-filter, ul.box-filter ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.box-filter span {
    font-weight: bold;
    border-bottom: 1px solid #EEEEEE;
    display: block;
    padding-bottom: 5px;
    margin-bottom: 8px;
}
ul.box-filter > li ul {
    padding-bottom: 10px;
}






/* footer */

#social {
    clear: both;
    background: #000 url('../img/racetech-footer-texture.jpg') no-repeat top left;
    height: 54px;
    margin-top: 60px;
}

#social a{
    float: right;
    display: block;
    height:34px;
    width:34px;
    margin-top:10px;
    background: #000 url('../img/racetech-icons.png') no-repeat top left;
    margin-right: 5px;
}
#social a:hover{
    background-position: 0 -34px;
}


#social #email{
    background-position: -42px 0;
}
#social #email:hover{
    background-position: -42px -34px;
}
#social #youtube{
    background-position: -207px 0;
}
#social #youtube:hover{
    background-position: -207px -34px;
}

#social #instagram{
    background-position: -125px 0;
}
#social #instagram:hover{
    background-position: -125px -34px;
}

#social #googleplus{
    background-position: -166px 0;
}
#social #googleplus:hover{
    background-position: -166px -34px;
}


#social #newsletter{
    background-position: -83px 0;
    margin-right: 0;
}
#social #newsletter:hover{
    background-position: -83px -34px;
}

#footer {
    position: relative;
    clear: both;
    overflow: auto;
    min-height: 220px;
    padding: 20px 0;
    background:#141414 url('../img/racetech-footer-shadow.png') repeat-x top left;
    color: #EEE;
}

#footer p {
    color: #999;
    margin:0;
    padding:0;
}

#footer h3 {
    color: #999;
    font-size: 22px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 8px;
    border-bottom: 1px dotted #666;
    height: 30px;
}
#footer .column {
    float: left;
    width: 20%;
    /*min-height: 100px;*/
}
#footer .column.x2 {
    width: 40%;
}

#footer .column > div{
    float: left;
    width: 90%;
}

#footer .column ul {
    color: #AAA;
    margin-top: 0;
    margin-left: 8px;
    padding-left: 12px;
}
#footer .column ul li {
    margin-bottom: 3px;
}
#footer .column ul a {
    text-decoration: none;
    color: #AAA;
}
#footer .column ul a:hover {
    text-decoration: underline;
}

#footer .yellow{
    color: #FFD700 ;
}

#copyright{
    position: absolute;
    clear: both;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 600;
    color: #555;
    padding: 5px 0;
    /*background-color: #FFD700 ;*/
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    bottom:20px;
    width:100%;
}






/* Table styles */

table.download-list{
    width:100% !important;
    border-collapse: collapse;
    border: none;
    color:#aaa;
}
table.download-list td,
table.download-list tr,
table.download-list table{
    border: none;
    vertical-align: top;
}


table.download-list tr:first-child td{
    border-top: 1px solid #ccc;
}

table.download-list td{
    padding-top: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

table.download-list strong{
    text-transform: uppercase;
    color: #333;
}



table.cleanTable,
.cleanTable table{
    width:100% !important;
    border-collapse: collapse;
    border: none;
}

table.cleanTable td,
table.cleanTable tr,
table.cleanTable,
.cleanTable table td,
.cleanTable table tr,
.cleanTable table{
    border: none;
    vertical-align: top;
}

table.cleanTable td,
.cleanTable table td{
    padding-top: 2px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
}


/* general styles */


h1, .headingText {
    color: #333;
    font-family: "Open Sans Condensed", Arial, Helvetica, sans-serif;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: normal;
    text-shadow: 0 0 1px rgba(0, 0, 0, .01);
    border-bottom: 2px solid #FFD700;
}

h2{
    font-family: "Open Sans Condensed", Arial, Helvetica, sans-serif;
    font-weight: 100;
}

h3 {
    font-size:20pt;
    line-height: 20px;
    white-space:nowrap;
    margin: 0 0 5px 0;
    padding: 0;
    font-weight: 200;
}


.pdfbutton a[href$=".pdf"]:after{
    /*content: "\00a0\e026";*/
    content: "\e025";
    font-family: 'Glyphicons Halflings';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    position: relative;
    top: 2px;
    padding-left: 5px;
}

.pdfbutton a[href$=".pdf"],
button.button,
a.button, input.button {
    cursor: pointer;
    color: #333;
    height: 38px;
    line-height: 12px;
    font-family: "Open Sans Condensed", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    background-color: #FFD700;
    border: 1px solid #FFD700;
    border-radius: 2px 2px 2px 2px;
    min-width: 100px;
    text-align: center;
    margin: 0;
    overflow: visible;
    display: inline-block;
    text-decoration: none;
    padding: 11px 20px 13px;
}

.pdfbutton a[href$=".pdf"],
button.button:hover,
a.button:hover,
input.button:hover {
    background-color: #FFEF00;
}


.button.grey{
    background-color: #aaaaaa;
    border-color: #999999;
}

.button.grey:hover{
    background-color: #bbbbbb;
    border-color: #aaaaaa;
}



.colours{
    color: #FFD700; /* RT yellow*/
    color: #FFEF00; /*mouse over*/
}


.producttabs .layoutContainer{
    height:39px;
}
.producttabs ul{
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    margin-left: 195px;

}
.producttabs ul > li {
    position: relative;
    float: left;
    z-index: 20;
}
.producttabs ul > li > a {
    font-size: 13px;
    color: #666;
    line-height: 14px;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 12px 18px 12px 18px;
    z-index: 6;
    position: relative;
    margin-right: 5px;
    background: #fff;
    border-radius: 3px 3px 0 0;
    border: 1px solid #f0f0f0;
}

.producttabs ul > li > a:hover {
    background: #f5f5f5;
    color: #333;
}
.producttabs ul > li > a.active {
    background: #f0f0f0;
    color: #333;
}
.producttab{
    font-size: 14px;
}


/*flags*/

.storeflags{
    margin: 0 auto;
   text-align: center;
}
.storeflags > div{
    width:120px;
    margin-right: 20px;
    display: inline-block;
    vertical-align: top;
}
.storeflags > div:last-child{
    margin-right: 0;
}

.storeflags .flag{
    width:120px;
    height:auto;
    margin-bottom: 20px;
}

.storeflags a.button{
    width: 120px;
}

/*Gallery*/
.album-preview-offset-frame{
    margin-left: -10px;
    width:795px;
}
.album_preview{
    display: inline-block;
    vertical-align: top;
    margin-left:12px;
}

.album_preview .image{
    width:250px;
    height: 250px;
    margin-bottom: 5px;
    padding: 8px;
    border: 1px solid #ddd;
}

.album_preview .image:hover{
    /*border: 1px solid #428bca;*/
    background: #ccc;
}

.album_preview .image img{
    width: 100%;
    height: 100%;
}

.album_preview .title a{
    font-size: 18px;
    line-height: 17px;
    text-decoration: none;
    margin-bottom: 18px;
    color: #888;
    display: block;
}

.album_preview .title a:Hover{
    color: #428bca;
}

.gallery .flexslider{
    /*background: #333;*/
    border: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 200px;
}

.gallery .slides iframe,
.gallery .slides img{
    background: #333;
    padding: 15px;
}

.gallery .flexslider .description{
    position: absolute;
    bottom:0;
    background: rgba(0,0,0,0.8);
    color:#fff;
    padding: 20px;
    width: 100%;

}
.gallery .flexslider .description p{
    margin: 0;
}

.gallery .flex-control-thumbs {
    margin-top: 15px;
    margin-bottom: 45px;
}

.gallery .flex-control-thumbs li{
    width: 70px;
    margin: 0 8px 8px 0 ;
}

.gallery .flex-control-thumbs li img{
    border: 1px solid #ccc;
    padding: 3px;

}

.gallery .flex-control-thumbs li img.flex-active{
    /*border: 1px solid #aaa;*/
    background: #ccc;
}

.gallery .flexslider .slides img {
    height: auto;
    /*max-height: 500px;*/
}

.gallery .flexslider:hover .flex-prev { opacity: 0.7; left: 25px; }
.gallery .flexslider:hover .flex-next { opacity: 0.7; right: 25px; }

.gallery .flex-direction-nav a {
    top:330px;
}


.gallerydescription{
    font-size: 16px;

}

#gallery-page .backbutton{
    display:none;
    text-align: center;
    margin-bottom: 15px;
}


@media (max-width: 767px) { /*XS*/


    .gallery .slides iframe, .gallery .slides img {
        padding: 2px;
    }

    #gallery-page .backbutton{
        display:block;
    }

    #gallery-page .layoutContainer #column-left{
        display:none;
    }
    #gallery-page .layoutContainer #content {
        margin-left: 0;
    }

    #gallery-page .layoutContainer{
         width: 90%;
     }

    #gallery-page.framed .layoutContainer{
        width: 100%;
    }

    .album-preview-offset-frame {
        width: 100%;
        text-align: center;
    }

    .gallery .flex-direction-nav a {
        display: none;
    }


}

@media (min-width: 768px) and (max-width: 975px) {  /*SM*/

    .gallery .slides iframe, .gallery .slides img {
        padding: 10px;
    }

    .album-preview-offset-frame {
        width: 540px;
    }

    #gallery-page .layoutContainer{
        width: 98%;
    }
    .gallery .flex-direction-nav a {
        top: 100px;
    }

}






/* products summary page */


.product{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEEEEE;
    display: table;
    width: 100%;

}

.product .title{
    color: #333;
    font-family: "Open Sans Condensed", Arial, Helvetica, sans-serif;
    font-size:25pt;
    line-height: 28px;
    white-space:nowrap;
    margin: 0 0 5px 0;
    padding: 0 0 5px 0;
    font-weight: 200;
    /*border-bottom: 1px solid #FFD700;*/
}

.product .title a{
    text-decoration: none;
    color: #333;
}

.product .image{
    /*width : 200px;*/
    /*float: left;*/
    /*margin-right: 20px;*/
    width: 220px;
    display: table-cell;
    vertical-align: top;
}
.product .image img{
     width : 220px;
     height: auto;
    
 }

.product .description{
    display: table-cell;
    vertical-align: top;
}


.products .cleanTable tr td:first-child{
    width:22%;
}




/* products */

.banner{
    margin-bottom: 40px;
    width:785px;
}

.banner img{
    width: 100%;
    height: auto;
}

.intro{
    margin-bottom: 20px;
}
.intro > div{
    display: inline-block;
    vertical-align: top;
}

.intro .image-column{
    width: 400px;
    margin-right: 11px;
    overflow: hidden;
    position: relative;
}

.intro .image-column .thumbs{
    font-size:0;
    margin-left: -10px;
}


.intro .imageFrame{
    border: 1px solid #ccc;
    border-bottom: 5px solid #FFD700;
    margin-top: 6px;
    margin-bottom: 20px;
    overflow: hidden;
}


.colorboxClick{
    cursor: -webkit-zoom-in; cursor: -moz-zoom-in;
}

.intro .image-column img.overlay{
    position: absolute;
    top: 16px;
    left: 10px;
    z-index: 1000;
    width: auto;
    height: auto;
}

.intro .image-column .product-thumbnail {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 10px;
    margin-left: 10px;
    width: 92px;
    height: 92px;
    border: 1px solid #CCCCCC;
    overflow: hidden;
}

.intro .image-column .product-thumbnail img,
.intro .image-column img{
    height:auto;
    width:100%;
}

.intro .description-column{
    width: 370px;
    font-size: 15px;
}

.description-column .description{
    line-height: 1.6;
    font-size: 15px;
}


.description-column .features-list  p{
    font-size: 40px;
    font-family: "Open Sans Condensed", Arial, Helvetica, sans-serif;
    font-weight: 300;
}
.features-list{
    margin-bottom: 20px;
}

.features-list  ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.features-list  ul li {
    background-image: url(../img/bullet.gif);
    background-repeat: no-repeat;
    background-position: 1px 6px;
    padding-left: 20px;
    margin-bottom: 5px;
}


.features{
    background: #F0F0F0;
    padding: 30px 0 60px;
    margin-bottom: -60px;
}

.feature{
    position: relative;
    min-height: 170px;
}

.feature .image{
    position: absolute;
    top:0;
    left: 0;
    width: 150px;
    height: 150px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background: #fff;
    overflow: hidden;
}

.feature .title{
    font-size:26pt;
    line-height: 26px;
    white-space:nowrap;
    margin: 0 0 5px 170px;
    padding: 0 0 10px;
    font-family: "Open Sans Condensed", Arial, Helvetica, sans-serif;
    font-weight: 300;

    border-bottom: 2px solid #FFD700;
}

.feature .description{
    font-size:16px;
    line-height: 1.6;
    margin: 0 0 5px 170px;
}




.productTestimonial {
    background: #F0F0F0;
    padding: 20px;
    border-radius: 3px;

}

.productTestimonial .title{
    color: #333;
    font-size: 16px;
    /*margin-bottom: 20px;*/
    font-weight: 700;
    margin-top: -5px;
}

.productTestimonial .quote{
    line-height: 1.8;
    color: #3D3D3D;
    font-size: 16px;
    position: relative;

}
.productTestimonial .quote.withImage{
    margin-left: 210px;
}
.productTestimonial .image{
    float: left;
    width: 200px;
}

.productTestimonial img{
    /*position: absolute;*/
    /*top:0;*/
    /*left:0;*/
    width:200px;
    height: auto;
}

/* hotspots */

.hotspot{
    width:15px;
    height: 15px;
    position: absolute;
    background: url(../img/hotspots.png) no-repeat top left;
    /*z-index: 900;*/
}

.hotspot:hover{
    background-position: 0 -185px;
    width:40px;
    height:150px;
    /*background-color: rgba(255,0,0,0.2);*/
}

.hotspot > div{
    display: none;
}

.hotspot:hover > div{
    display: block;

}
.hotspot .address{
    left: 31px;
    top: -13px;
}


/* Map */

.dealermap{
    width:960px;
    height:570px;
    position: relative;
    background: url(../img/dealer_map.png) top left no-repeat;
    cursor: pointer;
}

.dealermap .address{
    position: absolute;
    display: none;
    background: #fff;
    border: 1px solid #888;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    padding : 10px 15px;
    font-size: 13px;
    min-width: 300px;
    z-index: 2000;
}


.dealermap div:hover .address{
    display: block;
}

.dealermap .newzealand{
    position: absolute;
    width: 60px;
    height: 65px;
    left: 515px;
    top: 470px;
}

.dealermap .newzealand:hover{
    background: url(../img/dealer_map.png) -515px -1040px no-repeat; /* left 515 top 475+570 */
}

.dealermap .newzealand .address{
    left: 55px;
    top: -105px;
}


.dealermap .japan{
    position: absolute;
    width: 60px;
    height: 65px;
    left: 420px;
    top: 220px;
}

.dealermap .japan:hover{
    background: url(../img/dealer_map.png) -420px -790px no-repeat; /* left 420 top 220+570 */
}

.dealermap .japan .address{
    left: 55px;
    top: 20px;
}


.dealermap .southafrica{
    position: absolute;
    width: 65px;
    height: 55px;
    left: 105px;
    top: 435px;
}

.dealermap .southafrica:hover{
    background: url(../img/dealer_map.png) -105px -1005px no-repeat; /* left 105 top 435+570 */
}

.dealermap .southafrica .address{
    left: 60px;
    top: -135px;
}

.dealermap .usa{
    position: absolute;
    width: 260px;
    height: 300px;
    left: 660px;
    top: 35px;
}

.dealermap .usa:hover{
    background: url(../img/dealer_map.png) -660px -605px no-repeat; /* left 105 top 35+570 */
}

.dealermap .usa .address{
    left: -253px;
    top: 180px;
}


.dealermap .europe{
    position: absolute;
    width: 185px;
    height: 200px;
    left: 0;
    top: 68px;
}

.dealermap .europe:hover{
    background: url(../img/dealer_map.png) 0 -638px no-repeat; /* left 105 top 35+570 */
}

.dealermap .europe .address{
    left: 180px;
    top: 121px;
}
.contactlist{
    /*border-bottom: 1px solid #ddd;*/
    margin-bottom: 5px;
    padding-bottom: 5px;
}
.contactlist:last-child{
    border-bottom: none;
}

.contactlist .contactcol{
    width:49.5%;
    display: inline-block;
    vertical-align: top;
}



/*Contact Page Contact form*/

.contactForm{
    font-size: 17px;
    color: #555;
    background: #d8d8d8;
    padding: 15px;
    min-height: 300px;
    margin-bottom: 20px;
}

.contactForm label{
    font-weight: normal;
    margin-bottom: 0;
}

.contactForm div.col{
    width:370px;
    display: inline-block;
    vertical-align: top;
}
.contactForm div.col:first-child{
    margin-right: 10px;
}
.contactForm div.col a{
    float: right;
}

.contactForm select,
.contactForm textarea,
.contactForm input{
    font-size: 17px;
    padding: 3px 10px;
    width:370px;

    margin-bottom: 10px;
}

.contactForm textarea{
    height: 300px;
}

label.error{
    display: block;
    background: #a00;
    color: #fff;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 0 0 3px 3px;
    margin-top: -10px;
}


/*Textimonals page*/
/*s="testimonial">*/
/*<div class="quote">*/

/*</div>*/
  /*<div class="name"></div>*/
                      /*<div class="credentials"></div>*/


.testimonial{

    font-size: 17px;
    border-bottom: #FFD700 solid 2px;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.testimonial .image{
    float: left;
    width:300px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.testimonial .image img{
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    /*border-bottom: #FFD700 solid 2px;*/
    /*box-shadow: 0 0 10px rgba(0,0,0,0.5);*/
}

.testimonial .name{
    text-align: right;
    color: #555555;
}
.testimonial .credentials{
    color: #AAAAAA;
    text-align: right;
    font-size: 13px;
}
.testimonial .quotecol{
    width:465px;
    float: left;
}

.quote p:before{
    content: "\201C" /*"&ldquo";*/
}
.quote p:after{
    content: "\201D";/*"&rdquo";*/
}

.testimonial .quote{
    font-family: 'PT Serif', serif;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align:justify;
}













/*arrows
http://apps.eky.hk/css-triangle-generator/
*/

.arrowtop:before {
    content: "";
    position: absolute;
    top: -15px;
    left: 24px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 15px 10px;
    border-color:  transparent transparent #888 transparent;
}

.arrowtop:after {
    content: "";
    position: absolute;
    top: -13px;
    left: 24px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 15px 10px;
    border-color:  transparent transparent #fff transparent;
}

.arrowbottom:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 24px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #888 transparent transparent transparent;
}
.arrowbottom:after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 24px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #fff transparent transparent transparent;
}

.arrowleft:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #888 transparent transparent;
}

.arrowleft:after {
    content: "";
    position: absolute;
    top: 10px;
    left: -13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #fff transparent transparent;
}

.arrowright:before {
    content: "";
    position: absolute;
    top: 10px;
    right: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #888;
}

.arrowright:after {
    content: "";
    position: absolute;
    top: 10px;
    right: -13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
}


.arrowleft.bottom:before,
.arrowleft.bottom:after {
    top:auto;
    bottom: 10px;
}
.arrowright.bottom:before,
.arrowright.bottom:after {
    top: auto;
    bottom: 10px;
}





.modal-content {
 border-radius: 2px;
}

.modal-dialog {
    width: 600px;
    margin: 100px auto;
}

html, body{
    height: 100%;
}

body{
    overflow-x: hidden;
}


.hide {
    display: none;
}




.loading360{
    width: 100%;
    height: 100%;
    background: url(../slides/loading360.png) no-repeat center center;
}
.loading360.white{
    background-image: url(../slides/loading360white.png);
}

#product360frame{

    cursor: w-resize;
}

.icon360{
    position: absolute;
    top:0;
    right: 0;
    width: 66px;
    height: 66px;
    background: url(../slides/360icon.png) no-repeat;
    /*opacity: 0;*/
}
#product360frame .icon360{
    right: 10px;
    top:10px;
}

/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}

/*
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#000;}
#colorbox{}
#colorbox * {outline: none;}
#colorbox *:focus {outline: none;}
#cboxTopLeft{width:14px; height:14px; background:url(../img/controls.png) no-repeat 0 0;}
#cboxTopCenter{height:14px; background:url(../img/border.png) repeat-x top left;}
#cboxTopRight{width:14px; height:14px; background:url(../img/controls.png) no-repeat -36px 0;}
#cboxBottomLeft{width:14px; height:43px; background:url(../img/controls.png) no-repeat 0 -32px;}
#cboxBottomCenter{height:43px; background:url(../img/border.png) repeat-x bottom left;}
#cboxBottomRight{width:14px; height:43px; background:url(../img/controls.png) no-repeat -36px -32px;}
#cboxMiddleLeft{width:14px; background:url(../img/controls.png) repeat-y -175px 0;}
#cboxMiddleRight{width:14px; background:url(../img/controls.png) repeat-y -211px 0;}
#cboxContent{background:#fff; overflow:visible;}
.cboxIframe{background:#fff;}
#cboxError{padding:50px; border:1px solid #ccc;}
#cboxLoadedContent{margin-bottom:5px;}
#cboxLoadingOverlay{background:url(../img/loading_background.png) no-repeat center center;}
#cboxLoadingGraphic{background:url(../slides/loading.gif) no-repeat center center;}
#cboxTitle{position:absolute; bottom:-25px; left:0; text-align:center; width:100%; font-weight:bold; color:#333;}
#cboxCurrent{position:absolute; bottom:-25px; left:58px; font-weight:bold; color:#7C7C7C;}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{position:absolute;border: 0;bottom:-29px; background:url(../img/controls.png) no-repeat 0px 0px; width:23px; height:23px; text-indent:-9999px;}
#cboxPrevious{left:0px; background-position: -51px -25px;}
#cboxPrevious:hover{background-position:-51px 0px;}
#cboxNext{left:27px; background-position:-75px -25px;}
#cboxNext:hover{background-position:-75px 0px;}
#cboxClose{right:0; background-position:-100px -25px;}
#cboxClose:hover{background-position:-100px 0px;}

.cboxSlideshow_on #cboxSlideshow{background-position:-125px 0px; right:27px;}
.cboxSlideshow_on #cboxSlideshow:hover{background-position:-150px 0px;}
.cboxSlideshow_off #cboxSlideshow{background-position:-150px -25px; right:27px;}
.cboxSlideshow_off #cboxSlideshow:hover{background-position:-125px 0px;}



/* global menu */
#topnav li .globe {
    background-image: url(../img/globeicon.png);
    background-repeat: no-repeat;
    background-position: 7px 6px;
    padding-left: 41px;
}


