/* main.css */
/* Master page */
body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    font-family: Arial;
    font-size: 14px;
    background: #ededed url("../images/backgrounds/bg.gif") repeat top center;
    color: #535353;
}
html, body {
    height: 100%;
}
.containerWrapper {
    min-height: 100%;
}
* html .containerWrapper {
    height: 100%;
}

/* Elements */
h1 {
    color: #6d5226;
    text-transform: uppercase;
    padding: 0px;
    margin: 0px;
    margin-bottom: 20px;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
h2 {
    font-size: 30px;
    font-weight: normal;
    color: #000000;
}
table {
    border: 0px;
    border-spacing: 0px;
}
input, textarea, select {
    width: 230px;
    font-size: 12px;
    color: #000000;
    padding: 4px;
    border: 1px solid #e3e3e3;
    margin-bottom: 2px;
}
a {
    font-size: 14px;
    color: #f31c1f;
    border: 0px;
}
a img {
    border: 0px;
}
ul {
    margin: 0px;
}
ul li {
    margin: 0px;
}

/* Default elements */
.textContainer {
    margin: 25px;
    text-align: justify;
}
.mandatoryStar {
    color: #FF0000;
    margin-left: 3px;
}
.errorDiv {
    font-size: 10px;
    color: #FF0000;
    font-weight: bold;
}
.formRow {
    clear: both;
    position: relative;
}
.formText {
    width: 130px;
    float: left;
    vertical-align: top;
    font-size: 14px;
    padding-right: 20px;
    line-height: 20px;
}
.formInput {
    float: left;
    padding-bottom: 5px;
}
.buttonDiv {
    display: block;
    padding: 10px;
    margin-left: 140px;
}
.noElements {
    color: #ffffff;
}
.hiddenElement {
    display: none;
}

/* Page elements */
.logo {
    float: left;
    margin: 30px;
    margin-left: 50px;
    margin-right: 0px;
}
.pageContainer {
    margin-top: 40px;
    padding-bottom: 230px;
    width: 1200px;
    background: #ffffff;
    line-height: 18px;
}
.topContainer {
	background: #f7f7f7;
	padding-left: 50px;
	padding-right: 50px;
    height: 50px;
    line-height: 50px;
}
.mainContainer {
    width: 1100px;
    padding-top: 35px;
    text-align: left;
}
.leftColumn {
    width: 200px;
    float: left;
    margin-bottom: 30px;
}
.mainColumn {
	width: 850px;
	float: right;
	margin-bottom: 30px;
}
.narrowContent {
    width: 800px;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: left;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
}
.narrowContent.small {
    width: 400px;
}
.narrowContent h1 {
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #e3e4e8;
    margin-bottom: 30px;
    margin-left: 0px;
    font-size: 28px;
    line-height: 30px;
}
.footerContainer {
    width: 1200px;
    background: #000000;
    height: 230px;
    margin-top: -230px;
    margin-bottom: 40px;
}
.footerContainer .footerContent {
    width: 1200px;
    height: 230px;
    text-align: left;
}
.footerContainer .footerContent .footerColumn {
    width: 237px;
    margin-left: 50px;
    margin-top: 50px;
    height: 100px;
    float: left;
}
.footerContainer .footerContent .footerCopyright {
    text-align: center;
    font-size: 12px;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 20px;
    width: 1100px;
    border-top: 1px solid #2e2e2e;
    color: #666666;
    line-height: 60px;
}

.phoneDiv,
.emailDiv {
    float: left;
    font-size: 13px;
    color: #969595;
    margin-right: 30px;
}
.phoneDiv span,
.emailDiv span {
    color: #d22e2e;
}
.phoneDiv .icon,
.emailDiv .icon {
    display: inline-block;
    font-family: FontAwesome;
    font-size: 18px;
    color: #ffb001;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -5px;
}
.phoneDiv .icon:before {
    content: "\f095";
}
.emailDiv {
    float: right;
    margin-right: 0px;
}
.emailDiv .icon:before {
    content: "\f1d8";
}
.phoneDiv a,
.emailDiv a {
    text-decoration: none;
    color: #d22e2e;
    font-size: 13px;
}

/* fonts.css */
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome.eot?v=4.3.0');
    src: url('../fonts/fontawesome.eot?#iefix&v=4.3.0') format('embedded-opentype'), 
         url('../fonts/fontawesome.woff2?v=4.3.0') format('woff2'), 
         url('../fonts/fontawesome.woff?v=4.3.0') format('woff'), 
         url('../fonts/fontawesome.ttf?v=4.3.0') format('truetype'), 
         url('../fonts/fontawesome.svg?v=4.3.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* buttons.css */
/* General */
.button {
    height: 30px;
    width: 115px;
    background: #ffb001;
    color: #ffffff !important;
    border: 0px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    font-size: 11px;
}
.button:hover {
    background: #f31c1f;
    color: #ffffff;
}

/* Product */
.button.interested {
    width: 270px;
    font-size: 14px;
    background: #f54f51;
    line-height: 45px;
    height: 45px;
    padding: 0px;
}

/* Contact */
.button.contact {
    width: 200px;
    font-size: 14px;
    line-height: 36px;
    height: 36px;
    padding: 0px;
    float: right;
}

/* blocks.css */
/* MENU BLOCK */
.menuBlock {
    width: 850px;
    height: 100px;
    margin-right: 50px;
    float: right;
    text-align: center;
}
.menuBlock ul {
    padding: 0px;
    margin: 0px;
    cursor: default;
    list-style-type: none;
    text-align: right;
}
.menuBlock ul li {
    margin: 0px;
    padding: 0px;
    padding-top: 48px;
    padding-left: 30px;
    display: inline-block;
    position: relative;
}
.menuBlock ul li a {
    margin: 0px;
    padding-bottom: 10px;
    color: #999999;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    display: block;
}
.menuBlock ul li:hover a,
.menuBlock ul li.selected a {
    color: #ffb001;
}
.menuBlock ul li:hover > ul {
    overflow: visible;
    width: auto;
    margin-left: 30px;
    margin-top: -5px;
}
.menuBlock ul li ul {
    position: absolute;
    overflow: hidden;
    padding: 0px;
    z-index: 300;
    background: #f7f7f7;
    top: 100%;
    left: 0px;
    width: 0px;
}
.menuBlock ul li ul li {
    display: block;
    float: none;
    padding: 0px;
    margin: 0px;
}
.menuBlock ul li ul li a {
    height: 30px;
    color: #999999 !important;
    line-height: 30px;
    text-align: left;
    font-size: 12px;
    display: block;
    padding: 0px;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin: 0px;
    border: 0px !important;
}
.menuBlock ul li ul li:hover,
.menuBlock ul li ul li.selected {
    background: #ffb001;
    cursor: pointer;
}
.menuBlock ul li ul li:hover a,
.menuBlock ul li ul li.selected a {
    color: #ffffff !important;
}

/* SLIDER BLOCK */
.sliderBlock {
    width: 1100px;
    height: 500px;
    display: none;
}
.sliderBlock .sliderImage {
    width: 1100px;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
}
.sliderBlock .sliderContainer {
    width: 1100px;
    height: 500px;
    position: absolute;
}
.sliderBlock .sliderContainer #sliderLink {
    position: absolute;
    display: block;
    height: 450px;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    z-index: 100;
}
.sliderBlock .sliderContainer #sliderLink.withLink {
    cursor: pointer;
}
.sliderBlock .sliderContainer #sliderTextContainer {
    position: absolute;
    width: 1100px;
    height: 450px;
    margin-left: auto;
    margin-right: auto;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    text-align: left;
    color: #ffffff;
    text-shadow: 0px 0px 2px #000000;
}
.sliderBlock .sliderContainer #sliderTitle {
    margin-top: 130px;
    margin-left: 100px;
    font-size: 50px;
    line-height: 60px;
    font-weight: bold;
}
.sliderBlock .sliderContainer #sliderText {
    margin-left: 100px;
    margin-right: 100px;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
}
.sliderBlock .sliderContainer #sliderBullets {
    height: 20px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    left: 10px;
    z-index: 200;
    text-align: center;
}
.sliderBlock #sliderBulletsContent {
    position: relative;
    text-align: center;
    display: inline-block;
}
.sliderBlock #sliderBulletsContent .sliderBullet {
    width: 18px;
    height: 18px;
    margin-right: 7px;
    background: url("../images/blocks/slider/bullet.png") no-repeat 0px 0px;
    float: left;
}
.sliderBlock #sliderBulletsContent .sliderBullet:hover,
.sliderBlock #sliderBullets .sliderBulletSelected {
    width: 18px;
    height: 18px;
    margin-right: 7px;
    background: url("../images/blocks/slider/bullet.png") no-repeat 0px -18px;
    float: left;
}

/* STRIP BLOCK */
.stripBlock {
    height: 110px;
}
.stripBlock .blockContent {
    background: url('../images/blocks/strip/strip.gif') top center no-repeat;
    height: 110px;
    position: relative;
    min-width: 1200px;
}
.stripBlock .blockContent h1 {
    margin: 0px;
    padding: 0px;
    padding-top: 20px;
    text-align: center;
    color: #7f7f7f;
    line-height: 70px;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
}

/* WELCOME BLOCK */
.welcomeBlock {
    padding-bottom: 50px;
}
.welcomeBlock h1 {
    font-size: 22px;
    padding: 0px;
    margin: 0px;
    margin-bottom: 20px;
    font-weight: normal;
    text-transform: uppercase;
    color: #7f7f7f;
}
.welcomeBlock .blockContent {
    text-align: left;
    font-size: 14px;
    line-height: 22px;
    color: #969595;
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-gap: 60px;
    -moz-column-gap: 60px;
    -webkit-column-gap: 60px;
}

/* STRENGTH BLOCK */
.strengthBlock {
    background: url('../images/blocks/strength/strength.jpg') top center no-repeat;
    padding: 25px;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: -50px;
    margin-right: -50px;
    height: 450px;
    text-align: left;
    color: #ffffff;
}
.strengthBlock h1 {
    font-size: 22px;
    padding: 0px;
    margin: 0px;
    margin-bottom: 20px;
    font-weight: normal;
    text-transform: uppercase;
    color: #ffffff;
    text-align: left;
    border-bottom: 1px solid #ffffff;
}
.strengthBlock ul,
.strengthBlock ul li {
    padding: 0px;
    margin: 0px;
}
.strengthBlock ul li {
    margin-left: 20px;
}

/* NEW BLOCK */
.newBlock {
    text-align: left;
    background: #f7f7f7;
    padding: 50px;
    padding-top: 30px;
    padding-bottom: 70px;
    margin-left: -50px;
    margin-right: -50px;
    margin-top: 35px;
}
.newBlock h1 {
    font-size: 22px;
    padding: 0px;
    margin: 0px;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    color: #7f7f7f;
    text-align: left;
    border-bottom: 1px solid #ffffff;
}
.newBlock .blockContent {
    font-size: 12px;
}
.newBlock .blockContent .productListContainer {
    background: #ffffff;
    width: 326px;
    height: 250px;
    margin-left: 50px;
    margin-bottom: 0px;
    border: 1px solid #ffffff;
}
.newBlock .blockContent .productListContainer .productImage {
    width: 326px;
}
.newBlock .blockContent .productListContainer .productDetails {
    color: #848484;
}
.newBlock .blockContent .productListContainer .productDetails .productName {
    color: #000000;
}
.newBlock .blockContent .productListContainer:hover {
    background: #f54f51;
    border: 1px solid #f54f51;
}
.newBlock .blockContent .productListContainer:hover .productDetails,
.newBlock .blockContent .productListContainer:hover .productDetails .productName {
    color: #ffffff;
}

/* STORE BLOCK */
.storeBlock {
    padding-top: 10px;
    margin-left: -50px;
    margin-right: -50px;
    margin-top: 15px;
    text-align: left;
    color: #ffffff;
}
.storeBlock h1 {
    font-size: 22px;
    padding: 0px;
    margin: 0px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #7f7f7f;
}
.storeBlock .blockContent {
    background: url('../images/blocks/store/store.jpg') top center no-repeat;
    padding: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 325px;
}
.storeBlock .blockContent .storeColumn {
    width: 225px;
    height: 240px;
    text-align: center;
    border: 15px solid #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 17px;
    margin: 15px;
    margin-top: 25px;
    margin-bottom: 0px;
    float: left;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -webkit-opacity: 0.7;
}
.storeBlock .blockContent .storeColumn:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -webkit-opacity: 1;
}
.storeBlock .blockContent .storeColumn h2 {
    padding: 0px;
    margin: 0px;
    margin-top: 10px;
    line-height: 50px;
    font-size: 24px;
    color: #ffffff;
}
.storeBlock .blockContent .storeColumn a {
    color: #ffffff;
}

/* VIDEO BLOCK */
.videoBlock {
    margin-top: 50px;
    margin-bottom: 30px;
}
.videoBlock .blockContent .videoContainer {
    float: left;
}
.videoBlock .blockContent .videoColumn {
    float: right;
}
.videoBlock .blockContent .videoColumn .videoThumb {
    background-size: cover;
    background-position: center center;
    width: 260px;
    height: 135px;
    margin-bottom: 25px;
    cursor: pointer;
}

/* CATEGORY BLOCK */
.categoryBlock {
    margin-bottom: 50px;
}
.categoryBlock h2 {
    font-size: 18px;
    text-transform: uppercase;
}
.categoryBlock .blockContent ul {
    margin: 0px;
    padding: 0px;
}
.categoryBlock .blockContent ul li {
    list-style: none;
    width: 100%;
    line-height: 40px;
    border-bottom: 1px solid #ecf0f1;
}
.categoryBlock .blockContent ul li a {
    color: #34495e;
    text-decoration: none;
}
.categoryBlock .blockContent ul li.selected a {
    color: #f54f51;
}
.categoryBlock .blockContent ul li .categoryExpand {
    float: right;
    background: #ecf0f1;
    color: #a9b7c1;
    width: 25px;
    height: 25px;
    line-height: 22px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: 7px;
    cursor: pointer;
    font-family: Verdana;
}
.categoryBlock .blockContent ul li .categoryExpand:hover {
    background: #f31c1f;
    color: #ffffff;
}
.categoryBlock .blockContent ul li ul {
    border-top: 1px solid #ecf0f1;
    padding-top: 5px;
    padding-bottom: 5px;
    display: none;
}
.categoryBlock .blockContent ul li.selected ul {
    display: block;
}
.categoryBlock .blockContent ul li ul li {
    border: 0px;
    line-height: 30px;
    padding-left: 15px;
}
.categoryBlock .blockContent ul li.selected ul li a {
    color: #a1b1bc;
    font-size: 13px;
}
.categoryBlock .blockContent ul li.selected ul li.selected a {
    color: #f54f51;
}

/* SHARE BLOCK */
.shareBlock {
    margin-bottom: 50px;
}
.shareBlock h2 {
    font-size: 18px;
    text-transform: uppercase;
}
.shareBlock .blockContent a {
    text-decoration: none;
}
.shareBlock .blockContent .icon {
    background: #ecf0f1;
    color: #a9b7c1;
    width: 30px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    margin-right: 5px;
    cursor: pointer;
    font-family: FontAwesome;
    display: inline-block;
}
.shareBlock .blockContent .icon:hover {
    background: #f31c1f;
    color: #ffffff;
}
.shareBlock .blockContent .icon.facebook:before {
    content: "\f09a";
}
.shareBlock .blockContent .icon.twitter:before {
    content: "\f099";
}
.shareBlock .blockContent .icon.google:before {
    content: "\f0d5";
}
.shareBlock .blockContent .icon.linkedin:before {
    content: "\f0e1";
}

/* MULTI BLOCK */
.multiBlock {
    text-align: left;
}
.multiBlock h3 {
    color: #ffffff;
    text-transform: uppercase;
    text-align: left;
    padding: 0px;
    margin: 0px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: normal;
}
.multiBlock .blockContent {
    font-size: 12px;
    color: #666666;
}
.multiBlock .blockContent a {
    font-size: 12px;
    color: #acacac;
    text-decoration: none;
}

/* SOCIAL BLOCK */
.socialBlock {
    text-align: left;
}
.socialBlock h3 {
    color: #ffffff;
    text-transform: uppercase;
    text-align: left;
    padding: 0px;
    margin: 0px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: normal;
}
.socialBlock a {
    font-family: FontAwesome;
    color: #acacac;
    font-size: 24px;
    margin-right: 15px;
    text-decoration: none;
}
.socialBlock .facebookIcon:before {
    content: "\f09a";
}
.socialBlock .youtubeIcon:before {
    content: "\f167";
}
.socialBlock .googleIcon:before {
    content: "\f0d5";
}
.socialBlock .instagramIcon:before {
    content: "\f16d";
}
.socialBlock .twitterIcon:before {
    content: "\f099";
}

/* notice.css */
.noticeOK {
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #2ea41b;
    padding-top: 5px;
    line-height: 40px;
}
.noticeError {
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #ff0000;
    padding-top: 5px;
    line-height: 40px;
}

/* pager.css */
.pager, .pager a {
    font-family: Arial, Helvetica, Sans-Serif;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    color: #484748;
}
.pager .buttonPager {
    border: 1px solid #c1c1c1;
    display: inline-block;
    margin-right: 2px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}
.pager .buttonPager:hover {
    border: 1px solid #484748;
    color: #484748;
}
.pager .buttonDisabled {
    border: 1px solid #e3e3e3;
    color: #e3e3e3;
    display: inline-block;
    margin-right: 2px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}
.pager .buttonSelected {
    border: 1px solid #f4c431;
    display: inline-block;
    margin-right: 2px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    color: #ffffff;
    background: #f4c431;
}
.pager .pagesMissing {
    display: inline-block;
    margin-right: 2px;
    line-height: 25px;
    text-align: center;
    padding-left: 11px;
    padding-right: 11px;
}

/* user.css */
.recoveryDiv {
    margin-left: 150px;
    margin-bottom: 5px;
    text-align: left;
}
.recoveryDiv a {
    font-size: 11px;
}

/* sticky.css */
.home {
    font-size: 14px;
    color: #535353;
    padding: 20px;
    padding-top: 0px;
}

.homeSection {
    width: 350px;
    height: 140px;
    margin: 15px;
    border: 1px solid #e5e5e5;
    float: left;
}
.homeSection.delivery {
    background: #fbfaf8 url("../images/elements/sticky/delivery.gif") no-repeat 10px 10px;
}
.homeSection.consultancy {
    background: #fbfaf8 url("../images/elements/sticky/consultancy.gif") no-repeat 10px 10px;
}
.homeSection.fitting {
    background: #fbfaf8 url("../images/elements/sticky/fitting.gif") no-repeat 10px 10px;
}
.homeSection .sectionContent {
    border: 1px solid #e5e5e5;
    width: 204px;
    height: 124px;
    padding-left: 140px;
    padding-top: 10px;
    margin: 2px;
    text-align: left;
    font-size: 14px;
}
.homeSection .sectionContent .sectionTitle {
    color: #6d5226;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* contact.css */
#googleMaps {
    border: 0px;
    width: 1100px;
    height: 400px;
}

.contactColumn {
    float: left;
    width: 318px;
    margin: 50px;
    margin-right: 70px;
    margin-left: 0px;
    border: 1px solid #f1f1f1;
    color: #969595;
    font-size: 13px;
}
.contactIcon {
    width: 100px;
    height: 150px;
    float: left;
    background: #f9f9f9;
    color: #dadada;
    margin-right: 20px;
    font-family: FontAwesome;
    text-align: center;
    line-height: 150px;
    font-size: 30px;
}
.contactIcon.address:before {
    content: "\f041";
}
.contactIcon.phone:before {
    content: "\f095";
}
.contactIcon.mail:before {
    content: "\f003";
}
.contactColumn:hover .contactIcon {
    background: #ffb001;
    color: #ffffff;
}

.contactContainer {
    background: #f7f7f7;
    padding: 25px;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: -50px;
    margin-right: -50px;
    text-align: center;
}

.contactLeft {
    float: left;
    width: 400px;
    text-align: left;
}
.contactRight {
    float: right;
    width: 650px;
    text-align: left;
}
.contactForm {
    margin-bottom: 20px;
    margin-top: 30px;
}
.contactForm input,
.contactForm textarea {
    width: 370px;
    padding: 15px;
    height: 20px;
    border: 0px;
    color: #9a9a9a;
    margin-top: 20px;
}
.contactForm textarea {
    width: 620px;
    height: 165px;
    font-family: Arial;
}

.popupContainer {
    background: #f9f9f9;
    height: 270px;
    color: #606060;
    font-size: 13px;
    overflow: hidden;
}
.popupContainer h1 {
	color: #f54f51;
    margin: 0px;
}
.popupContainer input,
.popupContainer select {
	font-family: Arial;
	font-size: 13px;
    width: 400px;
    padding: 7px;
    margin-bottom: 5px;
}
.popupContainer select {
	width: 415px;
}
.popupContainer .popupText {
    padding: 5px;
}
.popupContainer .button {
    width: 415px;
    margin: 0px;
    margin-top: 10px;
    float: none;
}
.popupContainer .errorInput {
    border: 1px solid #c3161c;
}

/* product.css */
.productListContainer {
    float: left;
    width: 270px;
    height: 235px;
    border: 1px solid #e9ebed;
    padding: 2px;
    margin: 0px;
    margin-left: 10px;
    margin-bottom: 10px;
    display: block;
}
.productListContainer .productImage {
    width: 270px;
    display: block;
}
.productListContainer .productImage img {
    width: 100%;
}
.productListContainer .productDetails {
    color: #a1b1bc;
    font-size: 12px;
    padding: 10px;
    display: block;
}
.productListContainer .productDetails .productName {
    margin: 0px;
    color: #495a6c;
    text-decoration: none;
    display: block;
    font-size: 14px;
}
.productListContainer:hover {
    background: #f54f51;
    border: 1px solid #f54f51;
}
.productListContainer:hover .productDetails,
.productListContainer:hover .productDetails .productName {
    color: #ffffff;
}

.productColumn.left {
    width: 560px;
    float: left;
    color: #a3a3a3;
}
.productColumn.left .productImages {
    background: #ffffff;
    margin-bottom: 10px;
}
.productColumn.left .productImages #mainImage {
    width: 560px;
    height: 350px;
    cursor: pointer;
}
.productColumn.right {
    width: 270px;
    float: right;
    color: #969595;
    height: 350px;
    position: relative;
    font-size: 13px;
    line-height: 18px;
}
.productColumn.right h1 {
    color: #f54f51;
    text-align: left;
    text-transform: none;
    padding: 0px;
    margin: 0px;
    margin-bottom: 10px;
    line-height: 30px;
    font-size: 28px;
}
.productColumn.right a {
    font-size: 13px;	
}
.productColumn.right .productDetailsLine {
    line-height: 18px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ecf0f1;
}
.productColumn.right .productDetailsLine span {
	display: inline-block;
	width: 215px;
	text-align: left;
    float: right;
    color: #f31c1f;
}
.productColumn.right .productDetailsLine .price {
    font-weight: bold;
    font-size: 20px;	
    line-height: 20px;
}
.productColumn.right .productDetailsLine .small {
	color: #969595;
	font-size: 11px;
}

.productColumn.right .productInterested {
	position: absolute;
	bottom: 0px;
	height: 45px;
}

.productDescription ul.listTab {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
.productDescription ul.listTab li {
    float: left;
}
.productDescription ul.listTab li a {
    text-decoration: none;
    font-size: 14px;
    color: #3a3e4a;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #e0e5ec;
    border-left: 0px;
    margin-bottom: -1px;
    display: block;
}
.productDescription ul.listTab li:first-child a {
    border: 1px solid #e0e5ec;
}
.productDescription ul.listTab li a:hover {
    color: #f31c1f;
} 
.productDescription ul.listTab li a.selected {
    border-bottom: 1px solid #ffffff;
}
.productDescription .detailsTab {
    border: 1px solid #e0e5ec;
    padding: 15px;
    color: #969595;
}
.productDescription #advantageTab ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	line-height: 22px;
}
.productDescription #advantageTab ul li:before {
    font-family: FontAwesome;
    color: #00d90a;
    font-size: 18px;
    content: "\f00c";
    display: inline-block;
    padding-right: 5px;
    vertical-align: middle;
}
.productDescription #videoTab a {
    text-decoration: none;
}
.productDescription #videoTab img {
    width: 250px;
    margin: 10px;
}

.productThumbs {
    height: 110px;
}
.productThumbs .productThumbsLeft {
    display: block;
    float: left;
    width: 35px;
    height: 87px;
    margin: 0px;
    margin-top: 10px;
    padding: 0px;
    cursor: pointer;
    text-align: center;
    font-size: 30px;
    background: #ecf0f1;
    line-height: 87px;
    color: #a9b7c1;
}
.productThumbs .productThumbsLeft:before {
    font-family: FontAwesome;
    content: "\f104";
}
.productThumbs .productThumbsRight {
    display: block;
    float: right;
    width: 35px;
    height: 87px;
    margin: 0px;
    margin-top: 10px;
    padding: 0px;
    cursor: pointer;
    text-align: center;
    font-size: 30px;
    background: #ecf0f1;
    line-height: 87px;
    color: #a9b7c1;
}
.productThumbs .productThumbsRight:before {
    font-family: FontAwesome;
    content: "\f105";
}
.productThumbs .productThumbsLeft:hover,
.productThumbs .productThumbsRight:hover {
    background: #f31c1f;
    color: #ffffff;
}

.productThumbs .productThumbsContainer {
    display: block;
    float: left;
    height: 95px;
    width: 480px;
    margin-left: 5px;
    margin-top: 10px;
    overflow: hidden;
}
.productThumbs .productThumbsContainer ul {
    padding: 0px;
    margin: 0px;
    cursor: default;
    list-style: none;
    text-align: center;
}
.productThumbs .productThumbsContainer ul li {
    margin: 0px;
    padding: 0px;
    color: #687d91;
    float: left;
}
.productThumbs .productThumbsContainer ul li img {
    cursor: pointer;
    border: 1px solid #ecf0f1;
    margin-left: 4px;
    margin-right: 4px;
}

