/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/**
 * Variables
 */
/**
 * Mixins and Helpers
 */
.text-hide {
  text-indent: 110%;
  overflow: hidden;
  white-space: nowrap;
}
.centering {
  margin: auto;
  width: 1080px;
}
.triangle-props {
  content: "";
  display: block;
  position: absolute;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.f-left {
  float: left;
}
.f-right {
  float: right;
}
.hidden {
  display: none !important;
}
html.ie8 * {
  font-weight: normal !important;
  font-style: normal !important;
}
.accordion .ac-header {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.accordion .ac-content {
  overflow: hidden;
  padding: 0;
  margin: 0;
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}
.ac-collapse {
  height: 0px !important;
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}
.carousel-container {
  position: relative;
}
.carousel-container .carousel {
  display: block;
  max-height: 400px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.carousel-container .carousel .item {
  display: block;
  max-height: 250px;
  left: 0;
  top: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 50;
  -webkit-transition: opacity 350ms linear;
  -moz-transition: opacity 350ms linear;
  -o-transition: opacity 350ms linear;
  transition: opacity 350ms linear;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.carousel-container .carousel .item.no-trans {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.carousel-container .carousel .item img {
  display: block;
  width: 100%;
}
.carousel-container .carousel .item.active {
  position: relative;
  z-index: 55;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.carousel-container .carousel .item.next,
.carousel-container .carousel .item.previous {
  z-index: 100;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.carousel-container .carousel.horizontal-slide > div,
.carousel-container .carousel.horizontal-slide > ul {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}
.carousel-container .carousel.horizontal-slide > div.active,
.carousel-container .carousel.horizontal-slide > ul.active {
  left: 0;
}
.carousel-container .carousel.horizontal-slide > div.previous,
.carousel-container .carousel.horizontal-slide > ul.previous {
  left: -100%;
}
.carousel-container .carousel.horizontal-slide > div.next,
.carousel-container .carousel.horizontal-slide > ul.next {
  left: 100%;
}
.carousel-container .carousel[data-transition="vertical-slide"] > div {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}
.carousel-container .carousel[data-transition="vertical-slide"] > div.active {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.carousel-container .carousel[data-transition="vertical-slide"] > div.previous {
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.carousel-container .carousel[data-transition="vertical-slide"] > div.next {
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.carousel-nav {
  position: absolute;
  bottom: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  z-index: 100;
}
.carousel-nav li {
  display: inline-block;
  margin-left: 10px;
}
.carousel-nav li:first-child {
  margin-left: 0;
}
.carousel-nav li a {
  background-color: #ffffff;
  display: block;
  overflow: hidden;
  height: 15px;
  width: 15px;
  text-indent: 110%;
  white-space: nowrap;
  border: solid 1px #c7c8c7;
}
.carousel-nav .active a {
  background-color: #3498db;
}
.carouse-container > .carousel-nav {
  position: relative;
}
.carousel-control {
  cursor: pointer;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -30px;
  padding: 0;
  height: 60px;
  width: 40px;
  z-index: 151;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#home-carousel:hover .carousel-control {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.carousel-control.arrow-next {
  left: auto;
  right: 0;
}
.group {
  margin-bottom: 20px;
  padding: 20px;
}
.custom-styled-checkbox,
.custom-styled-radio {
  display: inline-block;
  height: 15px;
  width: 15px;
  vertical-align: bottom;
}
.custom-styled-checkbox {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  position: relative;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .custom-styled-checkbox {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.custom-styled-checkbox.checked {
  background-position: -20px 0;
}
.custom-styled-checkbox + label,
.custom-styled-checkbox + input[type=hidden] + label {
  margin-left: 5px;
  font-size: 14px;
  color: #4e4e4e;
}
.custom-styled-radio {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -40px 0;
  position: relative;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .custom-styled-radio {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.custom-styled-radio.checked {
  background-position: -60px 0;
}
.custom-styled-radio + label {
  margin-left: 5px;
  font-size: 14px;
  color: #4e4e4e;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.custom-styled-checkbox input[type="checkbox"],
.custom-styled-radio input[type="radio"] {
  cursor: pointer;
  margin: 0;
  height: 15px;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  width: 15px;
}
select {
  text-overflow: ellipsis;
  width: 100%;
}
.custom-styled-select {
  padding: 0;
  position: relative;
}
.custom-styled-select .outer {
  color: #3498db;
  border: solid 1px #b3b3b3;
  font-size: 13px;
  line-height: 1;
  padding: 11px 38px 11px 11px;
  text-overflow: ellipsis;
  display: block;
}
.custom-styled-select .outer:after {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -80px 0;
  position: absolute;
  display: block;
  width: 12px;
  height: 7px;
  content: "";
  right: 11px;
  top: 14px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .custom-styled-select .outer:after {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.custom-styled-select .inner {
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
.custom-styled-select select {
  -webkit-appearance: none;
  line-height: 36px;
  height: 36px;
  width: 100%;
}
.custom-styled-select select option {
  padding: 3px 11px;
}
.custom-styled-select.active .outer,
.custom-styled-select.focus .outer {
  border-color: #3498db;
}
.custom-styled-select.error .outer {
  border-color: #ff4d4d;
}
.custom-styled-select.disabled .outer {
  opacity: .4;
}
.drop-down {
  position: relative;
  /* 1st Level (Top Level) */
  /* 2nd Level */
}
.drop-down .trigger {
  display: inline-block;
}
.drop-down .trigger.active {
  text-decoration: underline;
}
.drop-down .trigger .content {
  background: #ffffff;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.4);
  display: none;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  padding: 15px;
  position: absolute;
  top: 100%;
  overflow: hidden;
  -webkit-transition: all 1.5s ease-in-out;
  -moz-transition: all 1.5s ease-in-out;
  -o-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}
.drop-down .trigger .content.show {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 10;
}
.drop-down li.last-item {
  margin-right: 0;
}
.drop-down li.highlight a {
  color: #333;
}
.drop-down li.nav-divider {
  height: 32px;
  margin: 0 43px 0 13px;
  width: 5px;
}
.drop-down li.level-top {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.drop-down li.level-top a.level-top {
  display: block;
  padding: 28px 10px;
  text-decoration: none;
  position: relative;
  font-size: 16px;
}
.drop-down li.level-top a.level-top:hover {
  text-decoration: none;
  color: #0064a8;
}
.drop-down li.level-top ul.level0 {
  background: #ffffff;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.4);
  display: none;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  padding: 15px;
  position: absolute;
  top: 100%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.drop-down li.level-top ul.level0 li a {
  display: block;
  padding: 9px 13px;
  text-decoration: none;
  white-space: nowrap;
}
.drop-down li.level-top ul.level0 li a:hover {
  color: #0064a8;
  background: #f1f1f1;
}
.drop-down li.level-top ul.level0 ul.level1 li {
  float: none;
  height: auto;
  display: block;
}
.drop-down li.level-top ul.level0.show {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 10;
}
.moby {
  background: #ffffff;
  display: none;
  position: fixed;
  z-index: 999;
  opacity: 0;
  overflow: hidden;
  top: -25%;
  left: 50%;
  margin-left: -260px;
  width: 480px;
  -webkit-transition: opacity 0.3s linear, top 0.3s linear;
  -moz-transition: opacity 0.3s linear, top 0.3s linear;
  -o-transition: opacity 0.3s linear, top 0.3s linear;
  transition: opacity 0.3s linear, top 0.3s linear;
}
.moby.show {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  top: 10%;
}
.moby.hide {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.moby .close {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -80px -78px;
  text-indent: -999em;
  z-index: 999;
  cursor: pointer;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -20px;
  right: -20px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .moby .close {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.moby div.inner {
  padding-top: 20px;
}
.moby .inner h2 {
  font-size: 40px;
}
.moby.shade {
  background: #fff;
  display: none;
  margin-left: 0;
  opacity: 0.98 !important;
  filter: alpha(opacity=98) !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=98)" !important;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.5s cubic-bezier(0.7, 0.01, 0.3, 1);
  -moz-transition: all 0.5s cubic-bezier(0.7, 0.01, 0.3, 1);
  -o-transition: all 0.5s cubic-bezier(0.7, 0.01, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.7, 0.01, 0.3, 1);
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%);
  filter: none !important;
}
.moby.shade.show {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.moby.shade.left {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.moby.shade.left.show {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.moby.shade div.inner {
  position: relative;
  max-width: 640px;
  top: 80px;
  margin: 0 auto;
}
.moby.shade.alt .close {
  top: 20px;
  right: -40px;
}
.moby.shade.alt div.inner {
  max-width: 550px;
  top: 40px;
}
ul.tabby-tabs {
  margin: 0;
  padding: 0;
}
ul.tabby-tabs span,
ul.tabby-tabs a {
  color: #b3b3b3;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
  font-size: 21px;
  text-decoration: none;
  display: block;
  padding: 0 16px;
}
ul.tabby-tabs span.active,
ul.tabby-tabs a.active {
  cursor: default;
}
ul.tabby-tabs li {
  display: block;
  float: left;
}
ul.tabby-tabs li:before {
  content: "";
  width: 0;
  height: 0;
  padding: 10px 0;
  border-left: solid 2px #b3b3b3;
  float: left;
}
ul.tabby-tabs li:first-child:before {
  display: none;
}
ul.tabby-tabs li:first-child span,
ul.tabby-tabs li:first-child a {
  padding-left: 0;
}
ul.tabby-tabs li.active span,
ul.tabby-tabs li a.active {
  color: #34715b;
}
.tab-content {
  clear: both;
  display: none;
  padding: 45px 0 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.tab-content:before,
.tab-content:after {
  content: " ";
  display: table;
}
.tab-content:after {
  clear: both;
}
.tab-content:before,
.tab-content:after {
  content: " ";
  display: table;
}
.tab-content:after {
  clear: both;
}
.tab-content > * {
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.tab-content.trans {
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.tab-content.trans.active {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.tab-content.trans.loading {
  background: url("/_ui/desktop/theme-mardel/images/loader-bluewhite-large.gif") no-repeat center center;
}
.tab-content.trans.loading > * {
  opacity: 0.25;
  filter: alpha(opacity=25);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
}
/* Form testing */
.labelify li input,
.labelify li textarea {
  z-index: 1;
}
.labelify .input-text {
  position: relative;
}
.labelify .input-text label:first-child {
  font-size: 13px;
  font-weight: normal;
  color: #a6a8ab;
  position: absolute;
  z-index: 10;
  top: 11px;
  left: 11px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: -0.025em;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.labelify .input-text label:first-child.ignore,
.labelify .input-text label:first-child.error {
  position: relative;
  top: auto;
  left: auto;
}
.labelify .input-text label.shown:first-child {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.labelify .input-text label.dim:first-child {
  opacity: 0.3;
  filter: alpha(opacity=30);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}
.labelify .input-text label.hidde:first-childn {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.labelify .input-text label.ignore,
.labelify .input-text label.no-transform {
  color: #4e4e4e;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  position: relative;
  top: 0;
  left: 0;
}
html.ie8 .labelify label:first-child {
  font-size: 12px;
}
.kitchen-sink .f-left > div,
.kitchen-sink .f-right > div {
  margin-top: 30px;
}
.kitchen-sink .f-left > div:before,
.kitchen-sink .f-right > div:before,
.kitchen-sink .f-left > div:after,
.kitchen-sink .f-right > div:after {
  content: " ";
  display: table;
}
.kitchen-sink .f-left > div:after,
.kitchen-sink .f-right > div:after {
  clear: both;
}
.kitchen-sink .f-left > div:before,
.kitchen-sink .f-right > div:before,
.kitchen-sink .f-left > div:after,
.kitchen-sink .f-right > div:after {
  content: " ";
  display: table;
}
.kitchen-sink .f-left > div:after,
.kitchen-sink .f-right > div:after {
  clear: both;
}
.kitchen-sink .ks-table,
.kitchen-sink .ks-stationary,
.kitchen-sink .ks-product-grid {
  margin-top: 50px;
}
.kitchen-sink .f-left {
  width: 400px;
}
.kitchen-sink .f-right {
  width: 600px;
}
.kitchen-sink button {
  display: block;
  margin-bottom: 10px;
}
.kitchen-sink .ks-buttonset2 button {
  display: inline-block;
}
.kitchen-sink h2.section-header {
  margin: 20px 0;
}
.kitchen-sink h3 {
  margin-top: 20px;
}
.kitchen-sink .ks-misc > ul:first-child > li,
.kitchen-sink .ks-paging > ul:first-child > li {
  margin-bottom: 10px;
  margin-right: 30px;
  float: left;
}
.kitchen-sink .social-links {
  clear: both;
  margin-top: 7px;
}
.kitchen-sink .social-links:before,
.kitchen-sink .social-links:after {
  content: " ";
  display: table;
}
.kitchen-sink .social-links:after {
  clear: both;
}
.kitchen-sink .social-links:before,
.kitchen-sink .social-links:after {
  content: " ";
  display: table;
}
.kitchen-sink .social-links:after {
  clear: both;
}
.kitchen-sink .buttons-set {
  margin-top: 40px;
}
.kitchen-sink .ks-colors li {
  margin-bottom: 10px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.kitchen-sink .ks-colors li span {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.kitchen-sink .ks-colors li span.darkgreen {
  background-color: #02402c;
}
.kitchen-sink .ks-colors li span.green {
  background-color: #34715b;
}
.kitchen-sink .ks-colors li span.blue {
  background-color: #3498db;
}
.kitchen-sink .ks-colors li span.red {
  background-color: #ff4d4d;
}
.kitchen-sink .ks-colors li span.yellow {
  background-color: #feb82b;
}
.kitchen-sink .ks-colors li span.darkgrey {
  background-color: #4e4e4e;
}
.kitchen-sink .ks-colors li span.grey {
  background-color: #b3b3b3;
}
.kitchen-sink .ks-colors li span.lightgrey {
  background-color: #f5f5f5;
}
h1,
h2,
h3,
h4 {
  color: #34715b;
}
h1 {
  font-size: 21px;
  line-height: 30px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
h1.large {
  font-size: 24px;
  line-height: 36px;
}
h1.bordered {
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: solid 1px #b3b3b3;
  padding-bottom: 4px;
  margin-bottom: 15px;
}
h2 {
  font-size: 14px;
  line-height: 22px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
h2.bordered {
  border-bottom: solid 1px #b3b3b3;
  font-size: 21px;
  padding-bottom: 7px;
  margin-bottom: 15px;
}
h2.section-header {
  font-size: 21px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  margin-bottom: 32px;
}
h2.section-header span {
  display: inline-block;
  position: relative;
}
h2.section-header span:before,
h2.section-header span:after {
  content: "";
  position: absolute;
  height: 5px;
  border-top: 1px solid #b3b3b3;
  top: 12px;
  width: 600px;
}
h2.section-header span:before {
  right: 100%;
  margin-right: 10px;
}
h2.section-header span:after {
  left: 100%;
  margin-left: 10px;
}
h3 {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 6px;
}
h3.section-header {
  border-bottom: solid 1px #b3b3b3;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
p {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 11px;
}
p.large,
.product-desc,
.product-desc p,
.product-desc .copy {
  font-size: 14px;
  line-height: 24px;
}
p.section-divider {
  font-size: 14px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  margin: 20px 0;
}
p.section-divider span {
  display: inline-block;
  position: relative;
}
p.section-divider span:before,
p.section-divider span:after {
  content: "";
  position: absolute;
  height: 5px;
  border-top: 1px solid #b3b3b3;
  top: 9px;
  width: 600px;
}
p.section-divider span:before {
  right: 100%;
  margin-right: 25px;
}
p.section-divider span:after {
  left: 100%;
  margin-left: 25px;
}
.product-desc .summary,
.product-desc .final {
  margin-bottom: 11px;
}
ul.std,
.form-list ul.std,
.cms .spiffs ul,
.cms .copy ul,
.cms .spiffs ol,
.cms .copy ol {
  margin-bottom: 5px;
}
ul.std li,
.form-list ul.std li,
.cms .spiffs ul li,
.cms .copy ul li,
.cms .spiffs ol li,
.cms .copy ol li {
  font-size: 12px;
  line-height: 16px;
  list-style-position: outside;
  list-style-type: disc;
  margin: 0 0 2px 11px;
}
.cms .spiffs ul,
.cms .copy ul,
.cms .spiffs ol,
.cms .copy ol {
  margin: 15px 0 15px 4px;
}
.cms .spiffs ul li,
.cms .copy ul li,
.cms .spiffs ol li,
.cms .copy ol li {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 4px;
}
.cms .spiffs ul + p,
.cms .copy ul + p,
.cms .spiffs ol + p,
.cms .copy ol + p {
  margin-top: 30px;
}
.cms .spiffs ol li,
.cms .copy ol li {
  list-style-type: decimal;
}
.cms .copy b {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
span.warning {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ff4d4d;
}
/*--------------------------------------------------------------
    Forms
--------------------------------------------------------------*/
button,
a.button {
  background-color: #3498db;
  padding: 11px 40px 10px;
  margin: 0;
  color: #ffffff;
  border: none;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: background-color 250ms linear;
  -moz-transition: background-color 250ms linear;
  -o-transition: background-color 250ms linear;
  transition: background-color 250ms linear;
}
button:hover,
a.button:hover {
  background-color: #2488cb;
}
button.large,
a.button.large {
  padding: 14px 48px 14px;
  font-size: 16px;
}
button.small,
a.button.small {
  padding: 7px 27px 6px;
  font-size: 12px;
}
button.shop-now,
a.button.shop-now {
  background-color: #ffffff;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  border: solid 2px #3498db;
  color: #3498db;
  padding: 10px 40px 9px;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
button.shop-now:hover,
a.button.shop-now:hover {
  background-color: #3498db;
  color: #ffffff;
}
button.disabled,
a.button.disabled {
  opacity: 0.32;
  filter: alpha(opacity=32);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=32)";
  cursor: default;
}
button.disabled:hover,
a.button.disabled:hover {
  background-color: #3498db;
}
a.small {
  line-height: 17px;
}
input[type=text],
input[type=password] {
  height: 36px;
  line-height: 100%;
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 0 11px;
  border: solid 1px #b3b3b3;
  width: 218px;
}
input[type=text]:focus,
input[type=password]:focus {
  border-color: #3498db;
}
input[type=text].error,
input[type=password].error {
  border-color: #ff4d4d;
}
html.ie8 input[type=text],
html.ie8 input[type=password] {
  line-height: 36px;
}
input.qty {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  padding: 0 5px;
}
input.qty + a {
  margin-top: 10px;
  display: inline-block;
}
textarea {
  line-height: 22px;
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 0 11px;
  border: solid 1px #b3b3b3;
  width: 100%;
  height: 122px;
  font-size: 13px;
}
textarea:focus {
  border-color: #3498db;
}
textarea.error {
  border-color: #ff4d4d;
}
.form-list {
  width: 260px;
}
.form-list:before,
.form-list:after {
  content: " ";
  display: table;
}
.form-list:after {
  clear: both;
}
.form-list:before,
.form-list:after {
  content: " ";
  display: table;
}
.form-list:after {
  clear: both;
}
.form-list.wide {
  width: 456px;
}
.form-list li {
  margin-bottom: 15px;
}
.form-list li > p,
.form-list li label,
.form-list li > .field > p {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: inherit;
}
.form-list li p.hint {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 9px;
  margin: 4px 0 0;
}
.form-list li label {
  display: block;
}
.form-list li label .mandatory {
  display: none;
}
.form-list li.control .control-group .custom-styled-checkbox {
  margin-right: 10px;
}
.form-list li.control label {
  display: inline;
}
.form-list li.month-year > div {
  width: 120px;
  float: left;
  margin-top: 19px;
}
.form-list li.month-year > div:first-child {
  margin: 0 19px 0 0;
}
.form-list li.month-year > div label:first-child {
  white-space: nowrap;
}
.form-list li.fields:before,
.form-list li.fields:after {
  content: " ";
  display: table;
}
.form-list li.fields:after {
  clear: both;
}
.form-list li.fields:before,
.form-list li.fields:after {
  content: " ";
  display: table;
}
.form-list li.fields:after {
  clear: both;
}
.form-list li.fields .field {
  float: left;
  width: 218px;
}
.form-list li.fields .field:first-child {
  margin-right: 20px;
}
.form-list li.half:before,
.form-list li.half:after {
  content: " ";
  display: table;
}
.form-list li.half:after {
  clear: both;
}
.form-list li.half:before,
.form-list li.half:after {
  content: " ";
  display: table;
}
.form-list li.half:after {
  clear: both;
}
.form-list li.half .inner > div {
  float: left;
  margin-left: 20px;
}
.form-list li.half .inner > div:first-child {
  margin-left: 0;
}
.form-list li.half .inner > div .custom-styled-select {
  width: 218px;
}
.form-list li.full:before,
.form-list li.full:after {
  content: " ";
  display: table;
}
.form-list li.full:after {
  clear: both;
}
.form-list li.full:before,
.form-list li.full:after {
  content: " ";
  display: table;
}
.form-list li.full:after {
  clear: both;
}
.form-list li.full input[type=text] {
  width: 100%;
}
.form-list li.full.stack {
  margin-bottom: 10px;
}
.buttons-set {
  margin-top: 22px;
  position: relative;
}
.buttons-set .link-cancel {
  margin-left: 17px;
  font-size: 13px;
}
.buttons-set .in-process {
  position: absolute;
  top: 12px;
  left: 14px;
  display: none;
}
.processing .in-process {
  display: block;
}
.form-list li label.error,
label.error {
  font-size: 10px;
  color: #ff4d4d;
  display: block;
  margin-top: 3px;
}
.form-list li label.error.hidden,
label.error.hidden {
  display: none;
}
.singlet {
  position: relative;
}
.singlet input[type=text],
.singlet input[type=password] {
  height: 39px;
  line-height: 100%;
  width: 173px;
}
.singlet .input-text:before,
.singlet .input-text:after {
  content: " ";
  display: table;
}
.singlet .input-text:after {
  clear: both;
}
.singlet .input-text:before,
.singlet .input-text:after {
  content: " ";
  display: table;
}
.singlet .input-text:after {
  clear: both;
}
.singlet .input-text label:first-child {
  top: 14px;
}
.singlet .input-text input {
  float: left;
}
.singlet button {
  font-size: 12px;
  padding: 11px 21px;
  float: left;
  line-height: 17px;
  height: 39px;
}
.flash-msg {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
}
.flash-msg > div {
  padding: 18px 0 ;
}
.flash-msg > ul.std {
  padding: 8px 0 10px;
  margin: 0 10px;
}
.flash-msg.positive {
  background-color: #eaf1ee;
  color: #34715b;
}
.flash-msg.negative {
  background-color: #ffeded;
  color: #ff4d4d;
}
.flash-msg.neutral {
  background-color: #fff4df;
  color: #feb82b;
}
/*--------------------------------------------------------------
    Accordion
--------------------------------------------------------------*/
.accordion-form,
.accordion-group,
.accordion-list {
  border-top: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
  position: relative;
}
.accordion-form h2,
.accordion-group h2,
.accordion-list h2 {
  padding: 9px 0 10px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.accordion-form h2:after,
.accordion-group h2:after,
.accordion-list h2:after {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -100px 0;
  display: inline-block;
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  right: 12px;
  top: 15px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .accordion-form h2:after,
  .accordion-group h2:after,
  .accordion-list h2:after {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.accordion-form .ac-header h3:before,
.accordion-group .ac-header h3:before,
.accordion-list .ac-header h3:before,
.accordion-form .ac-header p:before,
.accordion-group .ac-header p:before,
.accordion-list .ac-header p:before,
.accordion-form .ac-header h4:before,
.accordion-group .ac-header h4:before,
.accordion-list .ac-header h4:before {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -100px 0;
  display: inline-block;
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  left: 0;
  top: 20px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .accordion-form .ac-header h3:before,
  .accordion-group .ac-header h3:before,
  .accordion-list .ac-header h3:before,
  .accordion-form .ac-header p:before,
  .accordion-group .ac-header p:before,
  .accordion-list .ac-header p:before,
  .accordion-form .ac-header h4:before,
  .accordion-group .ac-header h4:before,
  .accordion-list .ac-header h4:before {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.accordion-form .ac-header h3,
.accordion-group .ac-header h3,
.accordion-list .ac-header h3,
.accordion-form .ac-header h4,
.accordion-group .ac-header h4,
.accordion-list .ac-header h4 {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #4e4e4e;
  font-size: 14px;
  padding: 18px 0 18px 24px;
  margin: 0;
}
.accordion-form .ac-header,
.accordion-group .ac-header,
.accordion-list .ac-header {
  position: relative;
}
.accordion-form .ac-header p,
.accordion-group .ac-header p,
.accordion-list .ac-header p {
  padding: 3px 0 3px 22px;
  margin: 0;
}
.accordion-form .ac-header p:before,
.accordion-group .ac-header p:before,
.accordion-list .ac-header p:before {
  top: 7px;
}
.accordion-form .ac-header.active h2:after,
.accordion-group .ac-header.active h2:after,
.accordion-list .ac-header.active h2:after {
  top: 15px;
  background-position: -120px 0;
}
.accordion-form .ac-header.active h3,
.accordion-group .ac-header.active h3,
.accordion-list .ac-header.active h3,
.accordion-form .ac-header.active p,
.accordion-group .ac-header.active p,
.accordion-list .ac-header.active p,
.accordion-form .ac-header.active h4,
.accordion-group .ac-header.active h4,
.accordion-list .ac-header.active h4 {
  position: relative;
}
.accordion-form .ac-header.active h3:before,
.accordion-group .ac-header.active h3:before,
.accordion-list .ac-header.active h3:before,
.accordion-form .ac-header.active p:before,
.accordion-group .ac-header.active p:before,
.accordion-list .ac-header.active p:before,
.accordion-form .ac-header.active h4:before,
.accordion-group .ac-header.active h4:before,
.accordion-list .ac-header.active h4:before {
  background-position: -120px 0;
  content: ' ';
}
.accordion-form .ac-header.active p,
.accordion-group .ac-header.active p,
.accordion-list .ac-header.active p {
  color: #3498db;
}
.accordion-form .ac-content,
.accordion-group .ac-content,
.accordion-list .ac-content {
  -webkit-transition: all 1ms linear;
  -moz-transition: all 1ms linear;
  -o-transition: all 1ms linear;
  transition: all 1ms linear;
}
.accordion-form .ac-content.active,
.accordion-group .ac-content.active,
.accordion-list .ac-content.active {
  margin-bottom: 12px;
}
.accordion-form .ac-content p {
  font-size: 10px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #34715b;
  margin: 4px 0 0;
}
.accordion-group {
  border-top: none;
}
.accordion-group .ac-header {
  border-top: solid 1px #b3b3b3;
}
.accordion-group .ac-header.active h3 {
  padding-bottom: 5px;
}
.accordion-group .ac-content {
  padding-left: 25px;
}
.accordion-list {
  border-bottom: none;
  padding-top: 8px;
}
.accordion-list .ac-header {
  margin-bottom: 7px;
}
.accordion-list .ac-header.active {
  margin-bottom: 0;
}
.accordion-list .ac-content {
  margin-bottom: 2px;
  padding-left: 22px;
}
.accordion-list .ac-content table td:first-child {
  white-space: nowrap;
}
.accordion-list .ac-copy {
  font-size: 14px;
  line-height: 24px;
}
/*--------------------------------------------------------------
    Icons & Arrows
--------------------------------------------------------------*/
a.link-wishlist {
  color: #4e4e4e;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
a.link-wishlist:before {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -200px 0;
  display: inline-block;
  content: "";
  width: 16px;
  height: 10px;
  margin-right: 5px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  a.link-wishlist:before {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
a.link-wishlist:hover {
  color: #3498db;
}
a.link-wishlist:hover:before {
  background-position: -220px 0;
}
a.link-video {
  font-size: 9px;
  text-transform: uppercase;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
a.link-video:before {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -280px 0;
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 2px;
  vertical-align: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  a.link-video:before {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
a.link-video:hover {
  color: #2488cb;
}
a.link-video:hover:before {
  background-position: -280px -13px;
}
.link-close {
  text-indent: -9999px;
  display: inline-block;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -261px 0;
  width: 12px;
  height: 12px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .link-close {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.link-close:hover {
  background-position: -110px -78px;
}
.link-close.large {
  width: 20px;
  height: 20px;
  background-position: -240px 0;
}
.link-close.large:hover {
  background-position: -80px -78px;
}
.arrow {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: 0 -30px;
  width: 14px;
  height: 23px;
  display: inline-block;
  text-indent: -9999px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .arrow {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.arrow.arrow-previous:hover {
  background-position: 0 -54px;
}
.arrow.arrow-next {
  background-position: -20px -30px;
}
.arrow.arrow-next:hover {
  background-position: -20px -54px;
}
.arrow.large,
.arrow.large:hover {
  width: 24px;
  height: 42px;
  background-position: -40px -30px;
}
.arrow.large.arrow-next,
.arrow.large:hover.arrow-next {
  background-position: -70px -30px;
}
.arrow.small {
  width: 6px;
  height: 10px;
  background-position: -100px -30px;
}
.arrow.small:hover {
  background-position: -100px -52px;
}
.arrow.small.arrow-next {
  background-position: -120px -30px;
}
.arrow.small.arrow-next:hover {
  background-position: -120px -52px;
}
.sale-badge,
.nav-sale a {
  display: inline-block;
  width: 40px;
  height: 14px;
  line-height: 14px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -140px 0;
  text-indent: -9999px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .sale-badge,
  .nav-sale a {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.sale-badge.coupon,
.nav-sale a.coupon {
  width: auto;
  height: auto;
  background-color: #FC5053;
  color: #fff;
  text-transform: uppercase;
  padding: 0 5px;
  text-indent: 0;
  background-image: none;
  font-size: 11px;
}
.sale-badge.large,
.nav-sale a.large {
  width: 64px;
  height: 21px;
  background-position: 0 -79px;
}
.sale-badge + .amount,
.nav-sale a + .amount {
  display: inline-block;
  margin-top: 8px;
}
.sale-badge + .msg,
.nav-sale a + .msg {
  margin-left: 12px;
  vertical-align: middle;
}
.social-links li {
  float: left;
  margin-left: 7px;
}
.social-links li:first-child {
  margin-left: 0;
}
.social-links a {
  background-image: url('../images/sprite.png') !important;
  background-repeat: no-repeat !important;
  background-position: -140px -65px !important;
  width: 34px;
  height: 34px;
  display: block;
  text-indent: -9999px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .social-links a {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.social-links a.facebook {
  background-position: -175px -65px;
}
.social-links a.pinterest {
  background-position: -210px -65px;
}
.social-links a.twitter {
  background-position: -245px -65px;
}
.social-links a.google {
  background-position: -280px -65px;
}
.social-links a.instagram {
  background-position: -315px -65px;
}
.social-links a.others {
  background-position: -350px -65px !important;
}
.social-links.alt a {
  background-position: -141px -30px !important;
}
.social-links.alt a:hover {
  background-position: -141px -65px !important;
}
.social-links.alt a.facebook,
.social-links.alt a.at-svc-facebook {
  background-position: -175px -30px !important;
}
.social-links.alt a.facebook:hover,
.social-links.alt a.at-svc-facebook:hover {
  background-position: -175px -65px !important;
}
.social-links.alt a.pinterest,
.social-links.alt a.at-svc-pinterest_share {
  background-position: -210px -30px !important;
}
.social-links.alt a.pinterest:hover,
.social-links.alt a.at-svc-pinterest_share:hover {
  background-position: -210px -65px !important;
}
.social-links.alt a.twitter,
.social-links.alt a.at-svc-twitter {
  background-position: -245px -30px !important;
}
.social-links.alt a.twitter:hover,
.social-links.alt a.at-svc-twitter:hover {
  background-position: -245px -65px !important;
}
.social-links.alt a.google,
.social-links.alt a.at-svc-google_plusone_share {
  background-position: -280px -30px !important;
}
.social-links.alt a.google:hover,
.social-links.alt a.at-svc-google_plusone_share:hover {
  background-position: -280px -65px !important;
}
.social-links.alt a.instagram {
  background-position: -315px -30px !important;
}
.social-links.alt a.instagram:hover {
  background-position: -315px -65px !important;
}
.social-links.alt a.others,
.social-links.alt a.at-svc-compact {
  background-position: -350px -30px !important;
}
.social-links.alt a.others:hover,
.social-links.alt a.at-svc-compact:hover {
  background-position: -350px -65px !important;
}
.social-links.alt a.print {
  float: right;
  margin: 17px 0;
  line-height: 34px;
  width: auto;
  background: none !important;
  text-indent: 0;
  display: inline-block;
  font-size: 14px;
}
.social-links .addthis_sharing_toolbox a {
  cursor: pointer;
  float: left;
  margin-left: 7px !important;
  margin-right: 0 !important;
}
.social-links .addthis_sharing_toolbox a:first-child {
  margin-left: 0 !important;
}
/*--------------------------------------------------------------
    Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb .container {
  margin: 22px auto 19px;
}
.breadcrumb li {
  font-size: 10.51px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  float: left;
}
.breadcrumb li.separator {
  margin: 0 3px;
}
.breadcrumb a {
  color: #4e4e4e;
}
.breadcrumb a:hover {
  color: #3498db;
}
.breadcrumb span {
  color: #3498db;
}
/*--------------------------------------------------------------
    Paging
--------------------------------------------------------------*/
.pager li {
  float: left;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  margin-right: 6px;
}
.pager li a,
.pager li span {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.pager li a {
  color: #4e4e4e;
}
.pager li a:hover {
  color: #3498db;
}
.pager li span {
  color: #3498db;
}
.pager li .arrow-previous {
  margin-right: 5px;
  margin-top: 2px;
}
.pager li .arrow-next {
  margin-left: 5px;
  margin-top: 2px;
}
.pager li .arrow.disabled {
  opacity: 0.25;
  filter: alpha(opacity=25);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  cursor: default;
}
/*--------------------------------------------------------------
    Product Grid
--------------------------------------------------------------*/
.product-grid,
.col2-left .product-summary,
.col-main .product-summary {
  margin-bottom: 56px;
}
.product-grid:before,
.col2-left .product-summary:before,
.col-main .product-summary:before,
.product-grid:after,
.col2-left .product-summary:after,
.col-main .product-summary:after {
  content: " ";
  display: table;
}
.product-grid:after,
.col2-left .product-summary:after,
.col-main .product-summary:after {
  clear: both;
}
.product-grid:before,
.col2-left .product-summary:before,
.col-main .product-summary:before,
.product-grid:after,
.col2-left .product-summary:after,
.col-main .product-summary:after {
  content: " ";
  display: table;
}
.product-grid:after,
.col2-left .product-summary:after,
.col-main .product-summary:after {
  clear: both;
}
.product-grid > li,
.col2-left .product-summary > li,
.col-main .product-summary > li {
  float: left;
  width: 158px;
  margin-left: 24px;
}
.product-grid > li:first-child,
.col2-left .product-summary > li:first-child,
.col-main .product-summary > li:first-child {
  margin-left: 0;
}
.product-grid h3,
.col2-left .product-summary h3,
.col-main .product-summary h3,
.product-grid .title,
.col2-left .product-summary .title,
.col-main .product-summary .title {
  color: #4e4e4e;
  font-size: 12px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 12px 0 6px;
  line-height: 15px;
}
.product-grid h3 a,
.col2-left .product-summary h3 a,
.col-main .product-summary h3 a,
.product-grid .title a,
.col2-left .product-summary .title a,
.col-main .product-summary .title a {
  color: #4e4e4e;
}
.product-grid .price,
.col2-left .product-summary .price,
.col-main .product-summary .price {
  margin-top: 8px;
}
.product-grid .ratings,
.col2-left .product-summary .ratings,
.col-main .product-summary .ratings {
  margin-top: 4px;
}
.product-grid .attribute,
.col2-left .product-summary .attribute,
.col-main .product-summary .attribute {
  margin-top: 6px;
  font-size: 10px;
}
.product-grid .notice,
.col2-left .product-summary .notice,
.col-main .product-summary .notice {
  margin: 13px 0 0;
  font-size: 12px;
  line-height: inherit;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #34715b;
}
.product-grid .notice.alt,
.col2-left .product-summary .notice.alt,
.col-main .product-summary .notice.alt {
  margin: 5px 0;
}
.product-grid .notice.promo,
.col2-left .product-summary .notice.promo,
.col-main .product-summary .notice.promo {
  color: #ff4d4d;
}
.product-grid .actions,
.col2-left .product-summary .actions,
.col-main .product-summary .actions {
  margin-top: 13px;
}
.product-grid .actions a,
.col2-left .product-summary .actions a,
.col-main .product-summary .actions a {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.product-grid p.manufacturer,
.col2-left .product-summary p.manufacturer,
.col-main .product-summary p.manufacturer,
.product-grid p.attribute,
.col2-left .product-summary p.attribute,
.col-main .product-summary p.attribute {
  margin-bottom: 0;
  line-height: inherit;
}
.product-image {
  border: solid 1px #cccccc;
  padding: 10px;
  display: block;
}
.price {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
}
.price .sale {
  color: #ff4d4d;
}
.ratings .rating-box {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -416px -75px;
  width: 84px;
  height: 14px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .ratings .rating-box {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.ratings .rating-star {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -416px -60px;
  height: 14px;
  width: 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .ratings .rating-star {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.ratings.small .rating-box {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -426px -45px;
  width: 74px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .ratings.small .rating-box {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.ratings.small .rating-star {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -426px -30px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .ratings.small .rating-star {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.star-rating-control .rating-cancel {
  display: none;
}
.star-rating-control .star-rating {
  float: left;
  width: 14px;
  height: 14px;
  margin-right: 3px;
  cursor: pointer;
}
.star-rating-control .star-rating a {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -427px -45px;
  display: block;
  text-indent: -9999px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .star-rating-control .star-rating a {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.star-rating-control .star-rating-hover a,
.star-rating-control .star-rating-on a {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -427px -31px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .star-rating-control .star-rating-hover a,
  .star-rating-control .star-rating-on a {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
input.star + .error {
  clear: both;
}
/*--------------------------------------------------------------
    Spiffs
--------------------------------------------------------------*/
.stationary {
  width: 174px;
}
.stationary a {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
}
.stationary .product-image {
  margin-bottom: 15px;
}
.category-spiff {
  margin-bottom: 25px;
}
.category-spiff,
.content-spiff {
  max-width: 100%;
  /****************************************************
    2 Spiffs per row
    ****************************************************/
  /****************************************************
    3 Spiffs per row
    ****************************************************/
  /****************************************************
    4 Spiffs per row
    ****************************************************/
  /****************************************************
    5 Spiffs per row
    ****************************************************/
  /****************************************************
    5 Spiffs per row
    ****************************************************/
}
.category-spiff:before,
.content-spiff:before,
.category-spiff:after,
.content-spiff:after {
  content: " ";
  display: table;
}
.category-spiff:after,
.content-spiff:after {
  clear: both;
}
.category-spiff:before,
.content-spiff:before,
.category-spiff:after,
.content-spiff:after {
  content: " ";
  display: table;
}
.category-spiff:after,
.content-spiff:after {
  clear: both;
}
.category-spiff .col-text,
.content-spiff .col-text,
.category-spiff .col-image,
.content-spiff .col-image {
  float: left;
}
.category-spiff .col-text,
.content-spiff .col-text {
  width: 46.66666667%;
  margin: 24px 2.56410256% 24px 0;
}
.category-spiff .col-image,
.content-spiff .col-image {
  width: 50.76923077%;
}
.category-spiff .col-image img,
.content-spiff .col-image img {
  width: 100%;
  height: auto;
  display: block;
}
.category-spiff.text-right .col-text,
.content-spiff.text-right .col-text {
  float: right;
  margin-right: 0;
  margin-left: 2.56410256%;
}
.category-spiff.align-center .col-text,
.content-spiff.align-center .col-text {
  text-align: center;
}
.category-spiff.align-right .col-text,
.content-spiff.align-right .col-text {
  text-align: right;
}
.category-spiff h2,
.content-spiff h2 {
  margin-bottom: 8px;
}
.category-spiff h2,
.content-spiff h2,
.category-spiff h2 a,
.content-spiff h2 a {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 30px;
}
.category-spiff p,
.content-spiff p {
  font-size: 13px;
  margin-bottom: 0;
}
.category-spiff p.discount,
.content-spiff p.discount {
  font-size: 29px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 6px;
}
.category-spiff h2 + p,
.content-spiff h2 + p {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 20px;
}
.category-spiff .price p,
.content-spiff .price p {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.category-spiff .sale-badge,
.content-spiff .sale-badge {
  margin-bottom: 11px;
  text-align: left;
}
.category-spiff .buttons-set,
.content-spiff .buttons-set {
  margin-top: 30px;
}
.category-spiff.spiff-width-fifty,
.content-spiff.spiff-width-fifty {
  border-top: none;
  width: 49.35185185%;
  float: left;
}
.category-spiff.spiff-width-fifty .col-text,
.content-spiff.spiff-width-fifty .col-text {
  width: 39.78300181%;
  margin-top: 0;
}
.category-spiff.spiff-width-fifty .col-image,
.content-spiff.spiff-width-fifty .col-image {
  width: 52.98372514%;
}
.category-spiff.spiff-width-fifty .col-image img,
.content-spiff.spiff-width-fifty .col-image img {
  width: 100%;
}
.category-spiff.spiff-width-fifty.even,
.content-spiff.spiff-width-fifty.even,
.category-spiff.spiff-width-fifty:nth-child(even),
.content-spiff.spiff-width-fifty:nth-child(even) {
  margin-left: 1.2962963%;
}
.category-spiff .yCmsComponent:first-child .spiff-width-fifty,
.content-spiff .yCmsComponent:first-child .spiff-width-fifty {
  margin-right: 1.2962963%;
}
.category-spiff.spiff-width-thirtythsree .col-text,
.content-spiff.spiff-width-thirtythsree .col-text,
.category-spiff.spiff-width-twentyfive .col-text,
.content-spiff.spiff-width-twentyfive .col-text,
.category-spiff.spiff-width-twenty .col-text,
.content-spiff.spiff-width-twenty .col-text {
  display: none;
}
.category-spiff.spiff-width-thirtythsree .col-image,
.content-spiff.spiff-width-thirtythsree .col-image,
.category-spiff.spiff-width-twentyfive .col-image,
.content-spiff.spiff-width-twentyfive .col-image,
.category-spiff.spiff-width-twenty .col-image,
.content-spiff.spiff-width-twenty .col-image {
  width: 100%;
}
.category-spiff .image-only,
.content-spiff .image-only {
  position: relative;
  border: 1px solid #b3b3b3;
}
.category-spiff .image-only .col-text,
.content-spiff .image-only .col-text {
  position: absolute;
  margin-bottom: 0;
  bottom: 20px;
  left: 19px;
}
.category-spiff .image-only .col-text .buttons-set a,
.content-spiff .image-only .col-text .buttons-set a {
  display: block;
}
.category-spiff .image-only .col-image,
.content-spiff .image-only .col-image {
  width: 100%;
}
.category-spiff.spiff-width-thirtythsree,
.content-spiff.spiff-width-thirtythsree {
  width: 32.40740741%;
  float: left;
}
.category-spiff.spiff-width-thirtythsree img,
.content-spiff.spiff-width-thirtythsree img {
  width: 100%;
  height: auto;
}
.category-spiff.spiff-width-thirtythsree + .category-spiff.spiff-width-thirtythsree,
.category-spiff.spiff-width-thirtythsree + .content-spiff.spiff-width-thirtythsree,
.content-spiff.spiff-width-thirtythsree + .category-spiff.spiff-width-thirtythsree,
.content-spiff.spiff-width-thirtythsree + .content-spiff.spiff-width-thirtythsree {
  margin-left: 1.38888889%;
}
.category-spiff.spiff-width-twentyfive,
.content-spiff.spiff-width-twentyfive {
  width: 23.88888889%;
  float: left;
}
.category-spiff.spiff-width-twentyfive img,
.content-spiff.spiff-width-twentyfive img {
  width: 100%;
  height: auto;
}
.category-spiff.spiff-width-twentyfive + .category-spiff.spiff-width-twentyfive,
.category-spiff.spiff-width-twentyfive + .content-spiff.spiff-width-twentyfive,
.content-spiff.spiff-width-twentyfive + .category-spiff.spiff-width-twentyfive,
.content-spiff.spiff-width-twentyfive + .content-spiff.spiff-width-twentyfive {
  margin-left: 1.48148148%;
}
.category-spiff.spiff-width-twenty,
.content-spiff.spiff-width-twenty {
  width: 18.88888889%;
  float: left;
}
.category-spiff.spiff-width-twenty img,
.content-spiff.spiff-width-twenty img {
  width: 100%;
  height: auto;
}
.category-spiff.spiff-width-twenty + .category-spiff.spiff-width-twenty,
.category-spiff.spiff-width-twenty + .content-spiff.spiff-width-twenty,
.content-spiff.spiff-width-twenty + .category-spiff.spiff-width-twenty,
.content-spiff.spiff-width-twenty + .content-spiff.spiff-width-twenty {
  margin-left: 1.38888889%;
}
.category-spiff.spiff-width-6across,
.content-spiff.spiff-width-6across {
  width: 170px;
  float: left;
}
.category-spiff.spiff-width-6across img,
.content-spiff.spiff-width-6across img {
  width: 100%;
  height: auto;
}
.category-spiff.spiff-width-6across + .category-spiff.spiff-width-6across,
.category-spiff.spiff-width-6across + .content-spiff.spiff-width-6across,
.content-spiff.spiff-width-6across + .category-spiff.spiff-width-6across,
.content-spiff.spiff-width-6across + .content-spiff.spiff-width-6across {
  margin-left: 12px;
}
.category-spiff {
  /*
    .spiff-width-fifty {
    	position: relative;

   		h2, p, span {
   			display: none;
   		}

   		.col-image {
	    	width: 100%;
	    }

	    .buttons-set {
	    	position: absolute;
	    	bottom: 20px;
	    	left: 18px;
	    }
    }
    */
}
.category-spiff a.button.shop-now {
  border: 2px solid #3498db;
  padding: 10px 35px 9px;
}
/*--------------------------------------------------------------
    Tables
--------------------------------------------------------------*/
.data-table {
  width: 100%;
}
.data-table th {
  color: #34715b;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  border-top: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
  padding: 18px 20px 18px 0;
  text-align: left;
  white-space: pre;
}
.data-table th:first-child {
  padding-left: 0;
}
.data-table tbody td {
  border-bottom: solid 1px #b3b3b3;
  padding: 20px 20px 20px 0;
  vertical-align: top;
}
.data-table tbody td:first-child {
  padding-left: 0;
}
.data-table .product-image {
  padding: 2px;
}
.data-table .product-image img {
  width: 100%;
  height: auto;
  display: block;
}
.data-table .product-image,
.data-table .title,
.data-table .price {
  margin-top: 15px;
}
.data-table .title a {
  color: #4e4e4e;
}
.data-table.cart-table .product-summary {
  margin-bottom: 0;
  min-width: 280px;
}
.data-table.cart-table .remove {
  padding-right: 0;
}
.data-table.cart-table .quantity a {
  display: block;
}
.data-table .sale-badge + .amount {
  display: block;
}
/*--------------------------------------------------------------
    Safety warnings rows
--------------------------------------------------------------*/
.data-table .without-bottom-line td {
  border-bottom: none;
}

.data-table .safety-warnings-row td {
  border-top: none !important;
  border-bottom: none;
}

.data-table .safety-warnings-row .warning-icon-td img {
  float: right;
}

.data-table .safety-warnings-row {
  /*border-bottom: solid 1px #b3b3b3;*/
}

.data-table .safety-warnings-row .warning-text-td {
  text-align: justify;
}

.data-table .safety-warnings-row .warning-text-td .warning {
  font-size: 12px;
}

.data-table .safety-warnings-row .warning-text-td span {
  color: #ff4d4d;
}
/*--------------------------------------------------------------
    Custom Scrollbars
--------------------------------------------------------------*/
.custom-scroll .scrollbar {
  position: relative;
  float: right;
  width: 7px;
  right: 5px;
}
.custom-scroll .scrollbar .track {
  background: #b3b3b3;
  position: relative;
}
.custom-scroll .scrollbar .track .thumb {
  cursor: pointer;
  position: absolute;
  overflow: hidden;
  width: 7px;
  background: #34715b;
}
.custom-scroll .viewport {
  overflow: hidden;
  position: relative;
}
.custom-scroll .viewport .overview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
/*--------------------------------------------------------------
    Temp development styles
--------------------------------------------------------------*/
.mrd-todo {
  display: none;
}
.mrd-todo .todo-note {
  display: none;
}
.show-todos .mrd-todo {
  display: block;
  background-color: #ff4d4d;
  color: #ffffff;
}
.show-todos .mrd-todo > p {
  padding: 5px 10px;
}
.show-todos .mrd-todo .todo-note {
  display: block;
}
/*--------------------------------------------------------------
    Globals
--------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-size: 12px;
  line-height: 1;
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4e4e4e;
}
strong {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
em,
i {
  font-family: 'Gotham SSm 4i', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
}
a {
  text-decoration: none;
  color: #3498db;
}
.strike {
  text-decoration: line-through;
}
.strong-em {
  font-weight: 700;
  font-style: italic;
}
/*--------------------------------------------------------------
    Forms
--------------------------------------------------------------*/
.icon-questionMark {
  display: inline-block;
  padding: 0px 4px 0;
  height: 14px;
  line-height: 14px;
  border-radius: 7px;
  background-color: #3498db;
  color: #ffffff;
  font-weight: 700;
  margin-left: 5px;
}
button.icon-button {
  padding: 7px 12px 6px;
  height: 39px;
}
button.icon-button span {
  text-indent: -9999px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -410px 0;
  width: 25px;
  height: 24px;
  display: block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  button.icon-button span {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.working {
  background: url("/_ui/desktop/theme-mardel/images/loader-bluewhite-large.gif") no-repeat center center;
}
.working * {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
.working button,
.working a.button {
  cursor: default;
}
.block-ui .block-me {
  cursor: default;
  opacity: 0.32;
  filter: alpha(opacity=32);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=32)";
}
.block-ui .hide-me {
  display: none;
}
.block-ui .address-list li {
  cursor: default;
}
.block-ui .address-list button,
.block-ui .address-list a.button {
  cursor: default;
  opacity: 0.32;
  filter: alpha(opacity=32);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=32)";
}
/*--------------------------------------------------------------
    Layout Helpers
--------------------------------------------------------------*/
.column-set-2 .col {
  width: 344px;
  float: left;
  margin-left: 208px;
}
.column-set-2 .col:first-child {
  margin-left: 0;
}
.column-set-2 h2 {
  font-size: 16px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
}
.col2-right-layout:before,
.col2-right-layout:after {
  content: " ";
  display: table;
}
.col2-right-layout:after {
  clear: both;
}
.col2-right-layout:before,
.col2-right-layout:after {
  content: " ";
  display: table;
}
.col2-right-layout:after {
  clear: both;
}
.col2-right-layout .col2-left {
  float: left;
  width: 768px;
}
.col2-right-layout .col2-right {
  float: right;
  width: 252px;
}
.col2-left-layout:before,
.col2-left-layout:after {
  content: " ";
  display: table;
}
.col2-left-layout:after {
  clear: both;
}
.col2-left-layout:before,
.col2-left-layout:after {
  content: " ";
  display: table;
}
.col2-left-layout:after {
  clear: both;
}
.col2-left-layout .col2-left {
  float: left;
  width: 252px;
}
.col2-left-layout .col2-right {
  float: right;
  width: 768px;
}
.left-nav h2 {
  border-bottom: solid 1px #b3b3b3;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 18px;
}
.left-nav h2 a {
  color: #34715b;
}
.left-nav .link-list li {
  margin-bottom: 10px;
}
.left-nav .link-list a {
  color: #4e4e4e;
  line-height: 14px;
}
.left-nav .link-list a:hover {
  color: #3498db;
}
.left-nav .link-list li.active a {
  color: #3498db;
}
/*--------------------------------------------------------------
    Content Shell
--------------------------------------------------------------*/
.content-page {
  position: relative;
}
.container {
  width: 1080px;
  margin: 0 auto;
}
.header-top {
  background-color: #34715b;
}
.header-top.header-checkout {
  padding: 7px 0;
}
.secondary-navigation {
  position: relative;
}
.secondary-navigation > ul > li {
  float: left;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  margin-left: 25px;
  position: relative;
}
.secondary-navigation > ul > li > a {
  color: #ffffff;
  line-height: 35px;
  display: inline-block;
}
.secondary-navigation ul {
  float: right;
  position: relative;
}
.secondary-navigation ul > li > ul {
  display: none;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  top: 34px;
  background-color: #ffffff;
  padding: 10px 15px 12px;
  border: solid 1px #34715b;
  z-index: 99;
  width: 160px;
  -webkit-transition: opacity 300ms ease;
  -moz-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.secondary-navigation ul > li > ul.show {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.secondary-navigation ul > li > ul li {
  margin-left: 0;
  line-height: 18px;
  float: none;
  margin-bottom: 2px;
}
.secondary-navigation ul > li > ul a {
  color: #4e4e4e;
  text-transform: none;
  display: block;
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.secondary-navigation ul > li > ul a:hover {
  color: #3498db;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.secondary-navigation .header-account > a:before {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -300px 0;
  display: inline-block;
  content: "";
  width: 14px;
  height: 12px;
  margin-right: 4px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .secondary-navigation .header-account > a:before {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.secondary-navigation a.header-utility-store-locator:before {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -340px 0;
  display: inline-block;
  content: "";
  width: 10px;
  height: 12px;
  margin-right: 4px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .secondary-navigation a.header-utility-store-locator:before {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.secondary-navigation a.minicart {
  background-color: #3498db;
  padding: 0 20px;
}
.secondary-navigation a.minicart:before {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -320px 0;
  display: inline-block;
  content: "";
  width: 16px;
  height: 12px;
  margin-right: 4px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .secondary-navigation a.minicart:before {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.secondary-navigation ul .miniCartPopup {
  border-color: #3498db;
  color: #4e4e4e;
}
#addToCartLayer,
.miniCartPopup {
  width: 372px;
  position: absolute;
  top: 34px;
  right: 0;
  background-color: #ffffff;
  padding: 10px 15px 12px;
  border: solid 1px #3498db;
  z-index: 152;
  -webkit-transition: opacity 300ms ease;
  -moz-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  color: #4e4e4e;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  line-height: 1;
  font-size: 12px;
}
#addToCartLayer.active,
.miniCartPopup.active,
#addToCartLayer.show,
.miniCartPopup.show {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#addToCartLayer .itemList,
.miniCartPopup .itemList {
  width: 100%;
}
#addToCartLayer .legend,
.miniCartPopup .legend {
  font-size: 14px;
  color: #34715b;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 13px;
  text-transform: capitalize;
}
#addToCartLayer .showing,
.miniCartPopup .showing {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: -2px 0 13px 0;
  text-transform: lowercase;
}
#addToCartLayer .popupCartItem,
.miniCartPopup .popupCartItem {
  margin-bottom: 20px;
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
  padding: 15px 0;
}
#addToCartLayer .popupCartItem:before,
.miniCartPopup .popupCartItem:before,
#addToCartLayer .popupCartItem:after,
.miniCartPopup .popupCartItem:after {
  content: " ";
  display: table;
}
#addToCartLayer .popupCartItem:after,
.miniCartPopup .popupCartItem:after {
  clear: both;
}
#addToCartLayer .popupCartItem:before,
.miniCartPopup .popupCartItem:before,
#addToCartLayer .popupCartItem:after,
.miniCartPopup .popupCartItem:after {
  content: " ";
  display: table;
}
#addToCartLayer .popupCartItem:after,
.miniCartPopup .popupCartItem:after {
  clear: both;
}
#addToCartLayer .popupCartItem + .popupCartItem,
.miniCartPopup .popupCartItem + .popupCartItem {
  border-top: none;
  margin-top: -20px;
}
#addToCartLayer .itemThumb,
.miniCartPopup .itemThumb {
  float: left;
  width: 70px;
  border: 1px solid #b3b3b3;
  overflow: hidden;
  padding: 2px;
}
#addToCartLayer .itemThumb img,
.miniCartPopup .itemThumb img {
  width: 100%;
  height: auto;
  display: block;
}
#addToCartLayer .itemDesc,
.miniCartPopup .itemDesc {
  position: relative;
  float: left;
  width: 240px;
  margin-left: 14px;
}
#addToCartLayer .itemDesc > div,
.miniCartPopup .itemDesc > div,
#addToCartLayer .itemDesc > a,
.miniCartPopup .itemDesc > a {
  display: block;
  line-height: 1;
  margin-bottom: 7px;
  text-transform: capitalize;
}
#addToCartLayer .itemDesc > div.itemName,
.miniCartPopup .itemDesc > div.itemName,
#addToCartLayer .itemDesc > a.itemName,
.miniCartPopup .itemDesc > a.itemName {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
#addToCartLayer .itemDesc > div.itemQuantity,
.miniCartPopup .itemDesc > div.itemQuantity,
#addToCartLayer .itemDesc > a.itemQuantity,
.miniCartPopup .itemDesc > a.itemQuantity {
  font-weight: normal;
}
#addToCartLayer .itemDesc > div div,
.miniCartPopup .itemDesc > div div,
#addToCartLayer .itemDesc > a div,
.miniCartPopup .itemDesc > a div {
  margin-bottom: 7px;
}
#addToCartLayer .itemDesc .attribute,
.miniCartPopup .itemDesc .attribute {
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: normal;
}
#addToCartLayer .itemDesc .product-attributes,
.miniCartPopup .itemDesc .product-attributes {
  float: none;
  position: inherit;
}
#addToCartLayer .itemDesc .product-attributes li,
.miniCartPopup .itemDesc .product-attributes li {
  display: block;
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 7px;
}
#addToCartLayer .itemDesc .product-attributes li span,
.miniCartPopup .itemDesc .product-attributes li span {
  text-transform: capitalize;
}
#addToCartLayer .itemDesc .sale-badge + .amount,
.miniCartPopup .itemDesc .sale-badge + .amount,
#addToCartLayer .itemDesc .sale-badge,
.miniCartPopup .itemDesc .sale-badge {
  margin-top: 0;
  line-height: 14px;
}
#addToCartLayer .itemDesc .savings,
.miniCartPopup .itemDesc .savings {
  display: none;
}
#addToCartLayer .itemDesc .amount + .regular,
.miniCartPopup .itemDesc .amount + .regular {
  font-weight: normal;
}
#addToCartLayer .itemDesc .remove,
.miniCartPopup .itemDesc .remove {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -261px 0;
  position: absolute;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  width: 12px;
  height: 12px;
  top: 0;
  right: -16px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #addToCartLayer .itemDesc .remove,
  .miniCartPopup .itemDesc .remove {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
#addToCartLayer .itemDesc .itemQuantity,
.miniCartPopup .itemDesc .itemQuantity {
  text-transform: uppercase;
}
#addToCartLayer .itemDesc .imprinting .itemName,
.miniCartPopup .itemDesc .imprinting .itemName {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
#addToCartLayer .total,
.miniCartPopup .total {
  display: block;
  width: 100%;
  text-align: right;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #34715b;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 20px;
}
#addToCartLayer .links,
.miniCartPopup .links {
  text-align: center;
}
#addToCartLayer .links .view-cart,
.miniCartPopup .links .view-cart {
  margin: 20px 0 8px 0;
  display: block;
}
#addToCartLayer .links .button,
.miniCartPopup .links .button {
  display: block;
}
#addToCartLayer .potential-promotion,
.miniCartPopup .potential-promotion {
  display: block;
  text-transform: capitalize;
  width: 100%;
  padding: 15px 11px;
  background-color: #eaf1ee;
  color: #34715b;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-family: 'Gotham SSm 4i', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  text-align: center;
  margin: 20px 0;
}
#addToCartLayer .imprinting,
.miniCartPopup .imprinting {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f5f5f5;
}
#addToCartLayer .imprinting .attribute,
.miniCartPopup .imprinting .attribute {
  font-size: 10px;
}
.header {
  border-bottom: solid 1px #b3b3b3;
}
.header .logo {
  float: left;
  margin-top: 27px;
}
.header .header-right {
  float: right;
}
.header-right h3 {
  color: #3498db;
  font-size: 23px;
  letter-spacing: -0.025em;
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 15px 0 14px;
}
.header-right h3 strong {
  text-transform: uppercase;
}
form.search-form input[type=text] {
  width: 427px;
  font-size: 14px;
  color: #4e4e4e;
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.ui-autocomplete {
  background-color: #ffffff;
  border: solid 1px #3498db;
  width: 475px !important;
  position: absolute !important;
  top: 125px !important;
  padding: 0 15px;
  z-index: 151;
}
.ui-autocomplete > li {
  border-top: solid 1px #b3b3b3;
}
.ui-autocomplete > li:before,
.ui-autocomplete > li:after {
  content: " ";
  display: table;
}
.ui-autocomplete > li:after {
  clear: both;
}
.ui-autocomplete > li:before,
.ui-autocomplete > li:after {
  content: " ";
  display: table;
}
.ui-autocomplete > li:after {
  clear: both;
}
.ui-autocomplete > li:first-child {
  border-top: none;
}
.ui-autocomplete .suggestions a {
  font-size: 14px;
  color: #4e4e4e;
  line-height: 40px;
  display: block;
}
.ui-autocomplete .product {
  padding-top: 15px;
  margin-bottom: 15px;
}
.ui-autocomplete .product-image {
  float: left;
  padding: 2px;
  width: 70px;
}
.ui-autocomplete .product-image img {
  width: 100%;
  display: block;
}
.ui-autocomplete .product-info {
  float: left;
  width: 225px;
  margin-left: 15px;
}
.ui-autocomplete .product-info h4 {
  color: #4e4e4e;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.ui-autocomplete .price {
  float: right;
  width: 97px;
  color: #4e4e4e;
}
.main-nav {
  margin: 21px 0 0;
}
.main-nav > ul > li {
  float: left;
  margin-left: 15px;
  position: relative;
}
.main-nav > ul > li:first-child {
  margin-left: 0;
}
.main-nav > ul > li > a {
  font-size: 15px;
  color: #34715b;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  padding-bottom: 15px;
  border-bottom: solid 5px transparent;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.main-nav > ul > li > a:hover {
  border-bottom: solid 5px #3498db;
}
.main-nav > ul > li.active > a {
  border-bottom: solid 5px #3498db;
}
.main-nav ul.submenu {
  display: none;
  background-color: #ffffff;
  border: 1px solid #3498db;
  padding: 9px 16px;
  position: absolute;
  top: 35px;
  min-width: 250px;
  z-index: 154;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 300ms ease;
  -moz-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.main-nav ul.submenu:before,
.main-nav ul.submenu:after {
  content: " ";
  display: table;
}
.main-nav ul.submenu:after {
  clear: both;
}
.main-nav ul.submenu:before,
.main-nav ul.submenu:after {
  content: " ";
  display: table;
}
.main-nav ul.submenu:after {
  clear: both;
}
.main-nav ul.submenu.show {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.main-nav ul.submenu > li {
  display: table;
}
.main-nav .left_col {
  display: table-cell;
  min-width: 216px;
}
.main-nav ul.submenu > li > .left_col {
  padding-left: 15px;
}
.main-nav ul.submenu > li > .left_col:first-child {
  padding-left: 0;
}
.main-nav ul.submenu > li > .left_col > .hasChildren > a {
  color: #34715b;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.main-nav .nav-submenu-title {
  font-size: 14px;
  margin-bottom: 3px;
}
.main-nav .Lb a {
  color: #4e4e4e;
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 26px;
  white-space: nowrap;
}
.main-nav .Lb a:hover {
  color: #3498db;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.main-nav li.node-8 ul.submenu {
  left: auto;
  right: -306px;
}
.main-nav li.node-9 ul.submenu {
  left: auto;
  right: -196px;
}
.main-nav li.node-10 ul.submenu {
  left: auto;
  right: -31px;
}
.main-nav ul.submenu li.nav-promos {
  border-top: solid 1px #b3b3b3;
  display: block;
  padding-top: 15px;
  margin: 9px 0 6px;
}
.main-nav ul.submenu li.nav-promos li {
  display: inline-block;
}
.main-nav ul.submenu li.nav-promos li.nav-deal a {
  color: #4e4e4e;
  font-size: 14px;
  line-height: 12px;
  vertical-align: bottom;
}
.main-nav ul.submenu li.nav-promos li + li:before {
  content: "|";
  display: inline-block;
  margin: 0 10px;
  vertical-align: top;
}
.footer {
  margin-top: 60px;
}
.footer .footer-top,
.footer .footer-main {
  background-color: #f5f5f5;
  border-top: solid 1px #b3b3b3;
}
.footer .footer-top {
  padding: 29px 0;
}
.footer .footer-top p {
  float: left;
  font-size: 15px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #34715b;
  margin: 9px 6px 0 0;
}
.footer .footer-bottom {
  background-color: #34715b;
}
.footer .social-links {
  margin-top: 2px;
  float: left;
  width: 400px;
}
.footer .social-links li a {
  background: none;
  text-indent: 0;
}
.footer .newsletter-signup {
  float: right;
  width: 665px;
}
.footer .newsletter-signup p {
  margin-top: 12px;
}
.footer .newsletter-signup .singlet {
  float: right;
  margin-left: 7xp;
}
.footer .newsletter-signup .singlet input[type=text] {
  width: 212px;
}
.footer .newsletter-signup .singlet button {
  padding: 11px 13px 10px;
}
.footer .newsletter-signup .singlet button span {
  width: 24px;
  height: 16px;
  background-position: -440px 0;
}
.footer .footer-main {
  padding: 20px 0 65px;
}
.footer .footer-main .link-list {
  float: left;
  margin-left: 100px;
}
.footer .footer-main .link-list:first-child {
  margin-left: 0;
}
.footer .footer-main .link-list li {
  margin-bottom: 10px;
}
.footer .footer-main .link-list img {
  margin-left: -25px;
}
.footer .footer-main a {
  color: #4e4e4e;
  font-size: 13px;
}
.footer .footer-main a:hover {
  color: #3498db;
}
.footer .footer-main h4,
.footer .footer-main h4 a {
  font-size: 15px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #34715b;
}
.footer .footer-main .find-a-store {
  float: right;
}
.footer .footer-main .find-a-store .singlet {
  margin-bottom: 9px;
}
.footer .footer-main .find-a-store .singlet input[type=text] {
  width: 212px;
}
.footer .footer-main .find-a-store .singlet button {
  padding: 8px 13px 7px;
}
.footer .footer-main .find-a-store .singlet button span {
  width: 18px;
  height: 22px;
  background-position: -360px 0;
}
.footer .footer-bottom {
  color: #ffffff;
  padding: 13px 0 12px;
}
.footer .footer-bottom p {
  font-size: 13px;
  margin-bottom: 4px;
}
.footer .footer-bottom p:first-child {
  font-weight: bold;
}
.footer .footer-bottom a {
  color: #ffffff;
}
.footer .footer-bottom .sub-footer-links {
  margin-top: 9px;
}
.footer .footer-bottom .sub-footer-links li {
  font-size: 13px;
  float: left;
}
.footer .footer-bottom .sub-footer-links li:before {
  content: " | ";
  display: inline-block;
  margin: 0 5px;
}
.footer .footer-bottom .sub-footer-links li:first-child:before {
  display: none;
}
@media screen and (max-width: 1080px) {
  #home-carousel,
  .footer {
    width: 1080px;
  }
  .footer .container {
    padding: 0 20px;
  }
  .footer .social-links {
    width: 360px;
  }
}
/*--------------------------------------------------------------
    Multi-step Wizard Navigation
--------------------------------------------------------------*/
.step-nav {
  border-bottom: solid 1px #b3b3b3;
  background-color: #34715b;
  padding: 0px 15px;
  margin: 0px -15px;
}
.step-nav:before,
.step-nav:after {
  content: " ";
  display: table;
}
.step-nav:after {
  clear: both;
}
.step-nav:before,
.step-nav:after {
  content: " ";
  display: table;
}
.step-nav:after {
  clear: both;
}
.step-nav .step {
  float: left;
  margin: 17px 25px 17px 2px;
}
.step-nav .step a {
  font-size: 16px;
  color: #b3b3b3;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.step-nav .step.active a {
  color: #ffffff;
}
.step-nav .step.disabled a {
  cursor: default;
}
/*--------------------------------------------------------------
    Tooltip
--------------------------------------------------------------*/
.tooltip {
  position: relative;
}
.tooltip .tipsy {
  position: absolute;
  width: 200px;
  padding: 7px 15px;
  border: 1px solid #b3b3b3;
  background-color: #f5f5f5;
  display: none;
  z-index: 10;
}
.tooltip .tipsy:after,
.tooltip .tipsy:before {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.tooltip .tipsy.top {
  top: -7px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
.tooltip .tipsy.top:after {
  top: 100%;
  border-color: rgba(241, 241, 241, 0);
  border-top-color: #f1f1f1;
  border-width: 6px 6px 0 6px;
}
.tooltip .tipsy.top:before {
  top: 100%;
  border-color: rgba(179, 179, 179, 0);
  border-top-color: #b3b3b3;
  border-width: 7px 7px 0 7px;
}
.tooltip .tipsy.bottom {
  bottom: -7px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  -moz-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  -o-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}
.tooltip .tipsy.bottom:after {
  bottom: 100%;
  border-color: rgba(241, 241, 241, 0);
  border-bottom-color: #f1f1f1;
  border-width: 0 6px 6px 6px;
}
.tooltip .tipsy.bottom:before {
  bottom: 100%;
  border-color: rgba(179, 179, 179, 0);
  border-bottom-color: #b3b3b3;
  border-width: 0 7px 7px 7px;
}
/*--------------------------------------------------------------
    Carousels and Sliders
--------------------------------------------------------------*/
.carousel.product-grid {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 250ms linear;
  -moz-transition: opacity 250ms linear;
  -o-transition: opacity 250ms linear;
  transition: opacity 250ms linear;
}
.carousel.product-grid .item {
  float: left;
  width: 160px;
  margin-left: 24px;
  background-color: #ffffff;
}
.carousel.product-grid .item:first-child {
  margin-left: 0;
}
.carousel.product-grid .note {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #34715b;
  line-height: 15px;
  margin: 5px 0 0;
}
.carousel.product-grid .image-wrapper {
  text-align: center;
}
.carousel.product-grid .image-wrapper .product-image {
  width: 100%;
}
.carousel.product-grid .image-wrapper .product-image img {
  max-width: 132px;
  display: block;
  margin: 0 auto;
}
.carousel.height-fixed {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.carousel.height-fixed .image-wrapper {
  position: relative;
}
.carousel.height-fixed .image-wrapper .product-image {
  position: absolute;
  bottom: 0;
}
.slider-wrap {
  overflow: hidden;
  position: relative;
}
.slider-wrap .slider {
  position: absolute;
  left: 0;
}
.slide-section {
  position: relative;
}
.slide-section .arrow {
  position: absolute;
  top: 33px;
}
.slide-section .arrow.arrow-previous {
  left: -24px;
}
.slide-section .arrow.arrow-next {
  right: -24px;
}
.slide-section .arrow.disabled {
  opacity: 0.25;
  filter: alpha(opacity=25);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  cursor: default;
}
.slide-section.hide-nav .arrow {
  display: none;
}
/*--------------------------------------------------------------
    Home Page
--------------------------------------------------------------*/
.carousel-container .hero-rotator {
  max-height: none;
}
.carousel-container .hero-rotator .item {
  max-height: none;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.carousel-container .hero-rotator .item.active {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.carousel-container .hero-rotator .item img {
  width: 100%;
}
.carousel-container .container {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -540px;
}
.carousel-container .carousel-control {
  position: absolute;
  top: 0;
  margin-top: 0;
}
.home-page #globalMessages .flash-msg {
  margin-bottom: 0;
}
.home-page .spiffs {
  margin-top: 40px;
}
.home-page .content-spiff h2,
.home-page .content-spiff h2 a {
  font-size: 24px;
  line-height: 28px;
}
.home-page .content-spiff h2 + p,
.home-page .content-spiff h2 a + p {
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.home-page .top-picks {
  margin-top: 20px;
}
/*--------------------------------------------------------------
    Home Page Alternate Templates
--------------------------------------------------------------*/
.home-page .row {
  margin-top: 50px;
  clear: both;
}
.home-page .row:before,
.home-page .row:after {
  content: " ";
  display: table;
}
.home-page .row:after {
  clear: both;
}
.home-page .row:before,
.home-page .row:after {
  content: " ";
  display: table;
}
.home-page .row:after {
  clear: both;
}
.home-page .row-1 {
  margin-top: 20px;
}
.home-page .row-hero {
  margin-top: 0;
}
.home-page .col1 .cmsimage img {
  width: 100%;
}
.home-page .col2 .cmsimage {
  width: 527px;
  margin-left: 20px;
  float: left;
}
.home-page .col2 .cmsimage img {
  width: 100%;
}
.home-page .col2 .yCmsContentSlot:first-child .cmsimage {
  margin-left: 0;
}
/*--------------------------------------------------------------
    Product Detail
--------------------------------------------------------------*/
#globalMessages .flash-msg {
  margin-bottom: 19px;
}
#globalMessages .flash-msg + .flash-msg {
  margin-top: -19px;
}
.product-detail .media {
  width: 500px;
  float: left;
  margin-bottom: 30px;
}
.product-detail .product-top {
  margin-bottom: 50px;
}
.product-detail .product-meta {
  width: 528px;
  float: right;
}
.product-detail .product-meta .ratings-wrapper {
  cursor: pointer;
}
.product-detail .product-meta .price {
  margin-top: 25px;
}
.product-detail .product-meta .price .sale-badge {
  display: block;
  width: 64px;
  height: 21px;
  background-position: 0 -78px;
}
.product-detail .product-meta .price .sale {
  margin-bottom: 5px;
}
.product-detail .product-meta .price .regular {
  display: block;
  font-size: 30px;
  color: #4e4e4e;
  margin-top: 5px;
}
.product-detail .product-meta .price .sale-badge + .amount {
  display: block;
  font-size: 30px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #4e4e4e;
  margin-top: 5px;
}
.product-detail .product-meta .price .sale + .regular,
.product-detail .product-meta .price .regular + .regular {
  font-size: 13px;
  margin-bottom: 1px;
}
.product-detail .product-meta .price .amount + .regular,
.product-detail .product-meta .price .regular + .regular {
  font-size: 13px;
  margin-bottom: 1px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.product-detail .product-meta .price .savings {
  font-size: 13px;
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 6px;
  font-weight: normal;
}
.product-detail .tier-pricing {
  margin-top: 17px;
}
.product-detail .tier-pricing h5 {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #34715b;
}
.product-detail .tier-pricing table {
  margin: 4px 0 2px;
}
.product-detail .tier-pricing table th,
.product-detail .tier-pricing table td {
  text-align: left;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 3px 12px 3px 0;
}
.product-detail h1 {
  font-size: 30px;
  color: #3498db;
  line-height: 32px;
  margin-bottom: 2px;
}
.product-detail .sku,
.product-detail .meta {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
}
.product-detail .product-alerts {
  margin-top: 12px;
}
.product-detail .product-alerts li {
  display: inline-block;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  height: 18px;
  line-height: 18px;
  font-size: 14px;
  color: #34715b;
}
.product-detail .product-alerts li:before {
  display: inline-block;
  content: "\2022";
  margin: 0 6px 0 3px;
}
.product-detail .product-alerts li:first-child:before {
  display: none;
}
.product-detail .product-alerts li.cod_badge,
.product-detail .product-alerts li .cod_badge {
  float: left;
  width: 133px;
  height: 18px;
  background: url('../images/cod_badge.png');
  background-size: 100% auto;
  margin: 4px 3px 0 0;
}
.product-detail .product-alerts li.cod_badge {
  margin-top: 0;
}
.product-detail .ratings-wrapper {
  margin-top: 24px;
}
.product-detail .ratings-wrapper > * {
  float: left;
}
.product-detail .ratings-wrapper .rating-box {
  margin-right: 12px;
}
.product-detail .ratings-wrapper a {
  color: #34715b;
  font-size: 14px;
}
.product-detail .product-tabs {
  border-top: solid 1px #b3b3b3;
  padding-top: 33px;
  clear: both;
}
.product-detail .product-tabs .tab {
  text-transform: uppercase;
}
.product-detail .product-tabs .lower .tab {
  text-transform: none;
}
.product-detail .product-tabs .col-1,
.product-detail .product-tabs .col-2 {
  float: left;
}
.product-detail .product-tabs .col-1 {
  width: 610px;
}
.product-detail .product-tabs .col-2 {
  width: 340px;
  margin-left: 65px;
}
.product-detail .product-tabs h2 {
  font-size: 21px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 25px;
}
.product-detail .product-tabs h3 {
  background-color: #ffffff;
  line-height: 14px;
}
.product-detail .short-desc {
  margin-top: 23px;
  padding: 20px 0 9px;
  border-top: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
}
.product-detail .short-desc .buttons-set {
  margin-bottom: 20px;
}
.product-detail .short-desc .bargain-info-hidden {
  overflow: hidden;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
  transition: height 0.5s ease;
}
.product-detail .short-desc .bargain-info-hidden.closed {
  height: 0 !important;
}
.product-detail .short-desc .bargain-info-read-more a {
  display: none;
}
.product-detail .short-desc .bargain-info-read-more a.show {
  display: block;
}
.product-detail .add-to {
  margin: 0 0 25px;
}
.product-detail input.qty {
  margin-right: 9px;
  height: 40px;
  width: 40px;
  line-height: normal;
}
.product-detail .addToCartButton {
  height: 40px;
  vertical-align: bottom;
  padding-left: 35px;
  padding-right: 35px;
}
.product-detail #imprint-modal h2 {
  font-size: 24px;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #b3b3b3;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.product-detail #imprint-modal h3 {
  padding-bottom: 10px;
  margin-bottom: 21px;
  border-bottom: 1px solid #b3b3b3;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.product-detail #imprint-modal p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 32px;
}
.product-detail #imprint-modal p span {
  color: #34715b;
}
.product-detail .imprint {
  border-top: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
  margin: 20px 0;
  padding: 20px 0;
}
.product-detail .imprint:before,
.product-detail .imprint:after {
  content: " ";
  display: table;
}
.product-detail .imprint:after {
  clear: both;
}
.product-detail .imprint:before,
.product-detail .imprint:after {
  content: " ";
  display: table;
}
.product-detail .imprint:after {
  clear: both;
}
.product-detail .imprint label.error {
  font-size: 13px;
  display: inline-block;
  line-height: 1;
  margin-top: 10px;
}
.product-detail .imprint .instructions {
  float: right;
  line-height: 16px;
}
.product-detail .imprint .fields {
  margin-top: 20px;
}
.product-detail .imprint .fields span.remove {
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -34px -105px;
  content: "";
  display: inline-block;
  margin-top: 14px;
  height: 8px;
  margin-left: 20px;
  overflow: hidden;
  text-indent: -9000px;
  width: 8px;
  cursor: pointer;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .product-detail .imprint .fields span.remove {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.product-detail .imprint .fields span.remove:hover {
  background-position: -47px -105px;
}
.product-detail .imprint .fields.first {
  margin-top: 0;
}
.product-detail .imprint .fields.first span.remove {
  display: none;
}
.product-detail .imprint form > div,
.product-detail .imprint .imprint-content > div,
.product-detail .imprint .fields div,
.product-detail .imprint .fields-header div {
  float: left;
  width: 100%;
}
.product-detail .imprint .fields-header {
  font-size: 13px;
  margin-bottom: 7px;
}
.product-detail .imprint div.control .input-box {
  width: auto;
  float: left;
}
.product-detail .imprint .imprint-content {
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
  transition: height 0.5s ease;
  overflow: hidden;
}
.product-detail .imprint .imprint-content.closed {
  height: 0 !important;
}
.product-detail .imprint .imprint-content .imprint-header {
  color: #34715b;
  font-size: 14px;
  line-height: 1;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 19px 0 10px 0;
}
.product-detail .imprint .imprint-content .imprint-header span {
  font-weight: normal;
  font-size: 11px;
}
.product-detail .imprint .imprint-content .imprintQty {
  width: 36px;
}
.product-detail .imprint .imprint-content .imprintQty input {
  padding: 0 10px;
}
.product-detail .imprint .imprint-content .imprintMessage {
  margin-left: 10px;
  width: 235px;
}
.product-detail .imprint .imprint-content .imprintMessage label,
.product-detail .imprint .imprint-content .imprintQty label {
  font-size: 13px;
  display: inline-block;
  line-height: 1;
}
.product-detail .imprint .imprint-content .imprintMessage input,
.product-detail .imprint .imprint-content .imprintQty input {
  width: 100%;
  height: 36px;
}
.product-detail .imprint .imprint-content button {
  margin: 20px 0;
  height: 30px;
  padding: 0 40px;
}
.product-detail .imprint .imprint-content #font-select {
  font-size: 13px;
  line-height: 15px;
}
.product-detail .imprint .imprint-content #font-select div.custom-styled-radio {
  margin-right: 6px;
  float: left;
}
.product-detail .imprint .imprint-content #font-select span {
  float: left;
  display: inline-block;
  height: 16px;
  width: 70px;
  text-indent: -9000px;
  overflow: hidden;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: 0 -172px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .product-detail .imprint .imprint-content #font-select span {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.product-detail .imprint .imprint-content #font-select .script-font {
  margin-bottom: 13px;
}
.product-detail .imprint .imprint-content #font-select .script-font span {
  margin-top: 2px;
}
.product-detail .imprint .imprint-content #font-select .block-font span {
  background-position: 0 -190px;
}
.product-detail .imprint .imprint-content .disclaimer {
  margin-top: 17px;
  margin-bottom: 0;
}
.product-detail .imprint .imprint-content .disclaimer .input-box > label {
  float: left;
  width: 487px;
  margin-left: 11px;
  line-height: 22px;
}
.product-detail .imprint .imprint-content .disclaimer .input-box > label p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
}
.product-detail .imprint .imprint-content .disclaimer .custom-styled-checkbox {
  margin-top: 3px;
  float: left;
}
.product-detail .add-to-cart,
.product-detail .add-to-wishlist {
  float: left;
}
.product-detail .add-to-cart {
  margin-top: 20px;
}
.product-detail .add-to-wishlist {
  margin: 33px 0 0 18px;
}
.product-detail .social-links {
  border-top: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
  margin-bottom: 20px;
  min-height: 68px;
}
.product-detail .social-links ul,
.product-detail .social-links .addthis_sharing_toolbox {
  margin: 17px 0;
}
.product-detail .social-links ul:before,
.product-detail .social-links .addthis_sharing_toolbox:before,
.product-detail .social-links ul:after,
.product-detail .social-links .addthis_sharing_toolbox:after {
  content: " ";
  display: table;
}
.product-detail .social-links ul:after,
.product-detail .social-links .addthis_sharing_toolbox:after {
  clear: both;
}
.product-detail .social-links ul:before,
.product-detail .social-links .addthis_sharing_toolbox:before,
.product-detail .social-links ul:after,
.product-detail .social-links .addthis_sharing_toolbox:after {
  content: " ";
  display: table;
}
.product-detail .social-links ul:after,
.product-detail .social-links .addthis_sharing_toolbox:after {
  clear: both;
}
.product-detail .warning-icon {
  float: left;
  margin: 5px 10px 0 0;
}
.product-detail .warning span {
  color: #ff4d4d;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.product-detail .pdf-downloads ul {
  float: left;
  margin-left: 100px;
}
.product-detail .pdf-downloads ul:first-child {
  margin-left: 0;
}
.product-detail .pdf-downloads li {
  margin: 14px 0;
}
.product-detail .pdf-downloads li a {
  color: #4e4e4e;
}
.product-detail .pdf-downloads li a:hover {
  color: #3498db;
}
.product-detail .cd-tracks {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin: 20px 0 0 0;
}
.product-detail .cd-tracks.closed {
  max-height: 254px !important;
}
.product-detail .cd-tracks h3 {
  margin-left: 16px;
}
.product-detail .show-more {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.product-detail .show-more a {
  display: none;
}
.product-detail .show-more a.show {
  display: block;
}
.product-detail .product-image {
  position: relative;
}
.product-detail .cod_ribbon {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 231px;
  height: 231px;
  background-image: url('../images/cod_ribbon.png');
  display: none;
}
.product-detail .cod_ribbon.show {
  display: block;
}
.product-detail .media #main-image.no-zoom {
  cursor: default;
}
.product-detail .media #main-image img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.product-detail .gallery {
  margin-top: 30px;
}
.product-detail .gallery ul {
  margin-bottom: 3px;
}
.product-detail .gallery li {
  float: left;
  margin-right: 30px;
  width: 76px;
}
.product-detail .gallery li:last-child {
  margin-right: 0;
}
.product-detail .gallery li.book-preview img {
  width: 76px !important;
}
.product-detail .gallery li.book-preview-alt {
  display: none;
}
.product-detail .gallery .product-image {
  padding: 2px;
}
.product-detail .gallery .product-image img {
  display: block;
  width: 100%;
}
.product-detail .gallery .carousel-container .carousel {
  max-height: 93px;
}
.product-detail .gallery p {
  margin-bottom: 0;
}
.product-detail .gallery .link-video:before {
  vertical-align: text-bottom;
}
.product-detail .gallery .moby .main-image {
  padding: 8px;
}
.product-detail .gallery .moby .gallery {
  margin-top: 20px;
}
.product-detail .gallery .moby .gallery li:first-child {
  margin-left: 0;
}
.product-detail .collateral h2.section-header {
  margin-bottom: 44px;
}
.product-detail .collateral .slider-wrap {
  margin-bottom: 70px;
}
.product-detail .variant-msg {
  line-height: 34px;
  height: 34px;
  padding: 0 10px;
  overflow: hidden;
  -webkit-transition: height 200ms ease-in;
  -moz-transition: height 200ms ease-in;
  -o-transition: height 200ms ease-in;
  transition: height 200ms ease-in;
}
.product-detail .variant-msg.closed {
  height: 0;
}
.product-detail .bible-variant {
  cursor: pointer;
  display: block;
  margin-top: 10px;
}
.product-detail .bible-variant:before,
.product-detail .bible-variant:after {
  content: " ";
  display: table;
}
.product-detail .bible-variant:after {
  clear: both;
}
.product-detail .bible-variant:before,
.product-detail .bible-variant:after {
  content: " ";
  display: table;
}
.product-detail .bible-variant:after {
  clear: both;
}
.product-detail .bible-variant > div {
  float: left;
}
.product-detail .bible-variant .product_image {
  border: 1px solid #b3b3b3;
  margin-right: 20px;
}
.product-detail .bible-variant .product_image .inner {
  border: solid 1px transparent;
  padding: 2px;
}
.product-detail .bible-variant .product_image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-detail .bible-variant.active .product_image {
  border-color: #3498db;
}
.product-detail .bible-variant.active .product_image .inner {
  border-color: #3498db;
}
.product-detail .bible-variant .product_meta div {
  font-size: 12px;
  margin-bottom: 8px;
}
.product-detail .bible-variant .product_meta .name {
  font-size: 13px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.product-detail .bible-variant .product_meta .price {
  margin-top: 8px;
}
.product-detail .bible-variant .product_meta .price .sale-badge + .amount,
.product-detail .bible-variant .product_meta .price .regular,
.product-detail .bible-variant .product_meta .price .savings {
  font-size: 12px;
}
.product-detail .bible-variant .product_meta .price .sale-container {
  margin: -2px 0 6px 0;
}
.product-detail .bible-variant .product_meta .price .sale-badge {
  float: left;
  background-position: -140px 0;
  width: 40px;
  height: 14px;
  margin: 0 6px 0 0;
}
.product-detail .bible-variant .product_meta .price .amount {
  float: left;
  margin: 0;
  line-height: 14px;
}
.product-detail .bible-variant .product_meta .price .regular {
  font-weight: normal;
}
.product-detail .bible-variant.active .product_meta div,
.product-detail .bible-variant.active .product_meta .name,
.product-detail .bible-variant.active .product_meta .price .regular {
  color: #3498db;
}
.product-slider {
  position: relative;
}
.product-slider .arrow {
  position: absolute;
  top: 165px;
}
.product-slider .arrow.arrow-previous {
  left: -24px;
}
.product-slider .arrow.arrow-next {
  right: -24px;
}
table.attributes,
table.alternating,
.cms .copy table,
.cms .spiffs table,
.cd-tracks table {
  width: 100%;
}
table.attributes th,
table.alternating th,
.cms .copy table th,
.cms .spiffs table th,
.cd-tracks table th,
table.attributes td,
table.alternating td,
.cms .copy table td,
.cms .spiffs table td,
.cd-tracks table td {
  background-color: #f5f5f5;
  font-size: 12px;
  padding: 3px 4px 3px 16px;
  text-align: left;
  line-height: 18px;
}
table.attributes tr.alt th,
table.alternating tr.alt th,
.cms .copy table tr.alt th,
.cms .spiffs table tr.alt th,
.cd-tracks table tr.alt th,
table.attributes tr:nth-child(even) th,
table.alternating tr:nth-child(even) th,
.cms .copy table tr:nth-child(even) th,
.cms .spiffs table tr:nth-child(even) th,
.cd-tracks table tr:nth-child(even) th,
table.attributes tr.alt td,
table.alternating tr.alt td,
.cms .copy table tr.alt td,
.cms .spiffs table tr.alt td,
.cd-tracks table tr.alt td,
table.attributes tr:nth-child(even) td,
table.alternating tr:nth-child(even) td,
.cms .copy table tr:nth-child(even) td,
.cms .spiffs table tr:nth-child(even) td,
.cd-tracks table tr:nth-child(even) td {
  background-color: #ffffff;
}
table.attributes th,
table.alternating th,
.cms .copy table th,
.cms .spiffs table th,
.cd-tracks table th {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.cms .copy table td:first-child,
.cms .spiffs table td:first-child {
  white-space: nowrap;
}
.cs-paging .pager li {
  font-size: 14px;
}
.cs-paging span.number-of-pages {
  color: #4e4e4e;
}
.reviews {
  padding-top: 16px;
}
.reviews p,
.reviews h5 {
  font-size: 14px;
}
.reviews .review {
  border-bottom: solid 1px #b3b3b3;
  padding-bottom: 5px;
  margin-bottom: 19px;
}
.reviews .review:nth-child(4n+4) {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.reviews .review > * {
  width: 620px;
}
.reviews .review-content {
  display: none;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.reviews .review-content.trans {
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.reviews .review-content.trans.active {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.reviews .loader {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 30px;
}
.reviews .loader img {
  vertical-align: middle;
}
.reviews .reviews-wrapper {
  display: none;
}
.reviews .review-tabs {
  margin-bottom: 12px;
}
.reviews .review-tabs li {
  float: left;
}
.reviews .review-tabs li:before {
  display: inline-block;
  content: "|";
  margin: 0 10px;
}
.reviews .review-tabs li:first-child:before {
  display: none;
}
.reviews .review-tabs li a {
  font-size: 14px;
}
.reviews .review-tabs li a.active {
  color: #34715b;
}
.reviews .review-list > ul > li {
  border-top: solid 1px #b3b3b3;
  padding-top: 20px;
  margin-bottom: 20px;
}
.reviews .review-list > ul > li:first-child,
.reviews .review-list > ul > li:nth-child(5n) {
  border-top: none;
  padding-top: 0;
}
.reviews .ratings {
  margin: 0 0 8px;
}
.reviews h5 {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #34715b;
  margin-bottom: 2px;
}
.reviews h5 span {
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4e4e4e;
}
.reviews .pager {
  float: right;
  margin-top: 15px;
}
.product-detail .product-tabs {
  margin-bottom: 67px;
}
.product-detail .product-tabs .review-form {
  margin-top: 30px;
}
.product-detail .product-tabs .review-form .col-1 {
  width: 456px;
  margin-top: 10px;
  margin-top: 39px;
}
.product-detail .product-tabs .review-form .col-1 .form-list,
.product-detail .product-tabs .review-form .col-1 input[type=text] {
  width: 100%;
}
.product-detail .product-tabs .review-form .col-2 {
  width: 528px;
  float: right;
  margin-top: 39px;
}
.product-detail .product-tabs .review-form p.notice {
  margin-top: 30px;
}
.product-detail .product-tabs .flash-msg {
  display: none;
  margin-bottom: 25px;
}
.product-detail .product-tabs .flash-msg > div {
  padding: 18px;
}
.survey-results {
  padding-top: 16px;
}
.survey-results .survey-ratings li:before,
.survey-results .survey-ratings li:after {
  content: " ";
  display: table;
}
.survey-results .survey-ratings li:after {
  clear: both;
}
.survey-results .survey-ratings li:before,
.survey-results .survey-ratings li:after {
  content: " ";
  display: table;
}
.survey-results .survey-ratings li:after {
  clear: both;
}
.survey-results .survey-ratings p,
.survey-results .survey-ratings .ratings {
  float: left;
}
.survey-results .survey-ratings p {
  font-size: 14px;
  color: #34715b;
}
.survey-results .survey-ratings .ratings {
  margin: 5px 0 0 10px;
}
.survey-results h4 {
  font-size: 14px;
  margin: 5px 0 3px;
}
.product-detail .ebook-info {
  margin-top: 15px;
}
.product-detail .ebook-info .col {
  width: 528px;
  margin-left: 24px;
  float: left;
}
.product-detail .ebook-info .col:first-child {
  margin-left: 0;
}
.product-detail .ebook-info .app-downloads a:first-child {
  margin-right: 17px;
}
.variants {
  margin-top: 15px;
}
.variants .input-box {
  margin-top: 10px;
}
.variants .custom-styled-select {
  width: 270px;
}
.variants .option {
  margin-top: 10px;
}
.variants .option p {
  font-size: 14px;
  margin-bottom: 5px;
}
.variants .option ul:before,
.variants .option ul:after {
  content: " ";
  display: table;
}
.variants .option ul:after {
  clear: both;
}
.variants .option ul:before,
.variants .option ul:after {
  content: " ";
  display: table;
}
.variants .option ul:after {
  clear: both;
}
.variants .option li {
  float: left;
  margin-right: 10px;
  cursor: pointer;
}
.variants .option span {
  padding: 2px 6px;
  border: solid 1px #b3b3b3;
  display: block;
  font-size: 9px;
  line-height: 24px;
  min-width: 30px;
  text-align: center;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.variants .option img {
  display: block;
}
.variants .option li.active span,
.variants .option li:hover span {
  border-color: #3498db;
}
.variants .option ul.disabled li {
  cursor: default;
  opacity: 0.4;
  filter: alpha(opacity=40);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}
.variants .option ul.disabled li.active spa,
.variants .option ul.disabled li:hover spa {
  border-color: #b3b3b3;
}
.variant-error {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 250ms ease-in;
  -moz-transition: height 250ms ease-in;
  -o-transition: height 250ms ease-in;
  transition: height 250ms ease-in;
}
.variant-error.show {
  height: 34px;
}
.variant-error > div {
  padding: 10px 15px;
}
.product-detail .out-of-stock,
.product-detail .product-messaging {
  margin: 20px 0 25px;
}
.product-detail .out-of-stock p,
.product-detail .product-messaging p {
  margin-bottom: 6px;
  font-size: 14px;
  color: #34715b;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.product-detail .out-of-stock .singlet input[type=text],
.product-detail .product-messaging .singlet input[type=text] {
  width: 357px;
}
.product-detail .out-of-stock {
  display: none;
}
.product-detail .out-of-stock p {
  white-space: nowrap;
}
.product-detail .out-of-stock label.error {
  clear: both;
  line-height: 20px;
}
.product-detail .availability-notice {
  display: none;
}
.product-detail .availability-notice .flash-msg {
  margin-bottom: 15px !important;
}
.product-detail .availability-notice .flash-msg > div {
  padding: 10px;
  width: 100%;
}
.product-detail .availability-notice a {
  font-size: 14px;
}
/*--------------------------------------------------------------
    Collection Product
--------------------------------------------------------------*/
.collection-detail h1 + .sku {
  display: none;
}
.collection-detail .social-links {
  border-top: none;
}
.collection-detail .flash-msg {
  margin-bottom: 20px;
}
.collection-detail .flash-msg > div {
  padding: 18px 13px;
}
.collection-detail .products-list {
  border-top: solid 1px #b3b3b3;
}
.collection-detail .products-list > li {
  margin-top: 25px;
  border-bottom: solid 1px #b3b3b3;
}
.collection-detail .products-list .product-image {
  width: 127px;
  float: left;
}
.collection-detail .products-list .product-image a,
.collection-detail .products-list .product-image img {
  display: block;
  width: 100%;
}
.collection-detail .products-list .product-info {
  width: 367px;
  float: right;
}
.collection-detail .products-list .product-info .flash-msg {
  margin: 20px 0 0;
}
.collection-detail .products-list h2,
.collection-detail .products-list h2 a {
  font-size: 30px;
  color: #4e4e4e;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.collection-detail .products-list h2 {
  line-height: 32px;
  margin-bottom: 2px;
}
.collection-detail .products-list .short-desc {
  border: none;
  padding: 0;
  margin-top: 12px;
}
.collection-detail .products-list .price {
  margin-top: 16px;
  font-size: 30px;
}
.collection-detail .products-list .add-to {
  float: left;
  position: relative;
}
.collection-detail .products-list .add-to .add-to-wishlist {
  position: absolute;
  left: 233px;
  white-space: nowrap;
  -webkit-transition: left 250ms linear;
  -moz-transition: left 250ms linear;
  -o-transition: left 250ms linear;
  transition: left 250ms linear;
}
.collection-detail .products-list .add-to .oos + .add-to-wishlist {
  left: 304px;
  -webkit-transition: left 0s linear;
  -moz-transition: left 0s linear;
  -o-transition: left 0s linear;
  transition: left 0s linear;
}
.collection-detail .products-list .variants {
  margin-top: 0;
}
.collection-detail .products-list .out-of-stock .singlet input[type="text"] {
  width: 283px;
}
/*--------------------------------------------------------------
    Pagination Bar
--------------------------------------------------------------*/
.paginationBar {
  border-bottom: 1px solid #b3b3b3;
  padding: 13px 0;
  margin-bottom: 33px;
}
.paginationBar .sortForm .sort-by {
  float: left;
  width: 235px;
}
.paginationBar .sortForm .sort-by > label {
  float: left;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 34px;
}
.paginationBar .sortForm .sort-by .custom-styled-select {
  float: right;
  width: 170px;
}
.paginationBar .sortForm .limiter {
  float: left;
  margin-left: 153px;
  width: 143px;
}
.paginationBar .sortForm .limiter label {
  float: left;
  font-size: 14px;
  line-height: 34px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.paginationBar .sortForm .limiter .custom-styled-select {
  float: right;
  width: 91px;
}
.paginationBar .right {
  float: right;
}
.paginationBar .right .pagination {
  float: left;
}
.paginationBar .right > p {
  margin-bottom: 0;
  margin-left: 12px;
  line-height: 35px;
  float: right;
}
.paginationBar .pagination {
  float: right;
}
.paginationBar .pagination li {
  float: left;
  line-height: 34px;
  font-size: 14px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.paginationBar .pagination li .currentPage {
  color: #3498db;
}
.paginationBar .pagination li.next a,
.paginationBar .pagination li.prev a {
  display: block;
  width: 6px;
  height: 10px;
  overflow: hidden;
  text-indent: -9000px;
  margin: 12px 0;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -100px -30px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .paginationBar .pagination li.next a,
  .paginationBar .pagination li.prev a {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.paginationBar .pagination li.prev a {
  margin-right: 10px;
}
.paginationBar .pagination li.next a {
  margin-left: 10px;
  background-position: -120px -30px;
}
.paginationBar .view-all,
.paginationBar .view-less {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 10px 0 0 15px;
  float: left;
}
.paginationBar .view-all a,
.paginationBar .view-less a {
  text-transform: uppercase;
}
.paginationBar .view-less {
  float: right;
}
.paginationBar.bottom {
  border: none;
  padding: 0;
  margin-bottom: 0;
}
.paginationBar.bottom form {
  display: none;
}
/*--------------------------------------------------------------
    Facet Navigation
--------------------------------------------------------------*/
.facetNavigation {
  float: left;
  width: 252px;
  overflow: hidden;
  border-top: 1px solid #b3b3b3;
  padding-top: 20px;
}
.facetNavigation a {
  color: #4e4e4e;
}
.facetNavigation .current-filter {
  background-color: #f5f5f5;
  border: 1px solid #b3b3b3;
  margin-bottom: 20px;
}
.facetNavigation .current-filter .headline {
  border: none;
  padding-bottom: 0;
}
.facetNavigation .current-filter span {
  float: left;
}
.facetNavigation .current-filter .remove {
  margin-top: 2px;
}
.facetNavigation .current-filter .remove a {
  display: block;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -34px -105px;
  width: 8px;
  height: 8px;
  margin-right: 4px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .facetNavigation .current-filter .remove a {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.facetNavigation .headline {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  padding-bottom: 10px;
  color: #34715b;
  border-bottom: 1px solid #b3b3b3;
}
.facetNavigation .facet {
  padding: 16px 0 6px 0;
  border-bottom: 1px solid #b3b3b3;
}
.facetNavigation .facet .facetHead {
  margin-bottom: 10px;
}
.facetNavigation .facet .facetHead a {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #34715b;
}
.facetNavigation .facet li {
  padding-left: 16px;
  margin-bottom: 12px;
  min-height: 12px;
}
.facetNavigation .facet li label {
  line-height: 1;
  display: block;
}
.facetNavigation .facet li label span {
  line-height: 1;
  display: inline-block;
}
.facetNavigation .facet li label.checked {
  color: #3498db;
}
.facetNavigation .facet li .custom-styled-checkbox {
  margin-right: 5px;
  width: 12px;
  height: 12px;
  background-position: -17px -103px;
}
.facetNavigation .facet li .custom-styled-checkbox.checked {
  background-position: 0 -103px;
}
.facetNavigation .facet li .custom-styled-checkbox input[type="checkbox"] {
  width: 12px;
  height: 12px;
}
.facetNavigation .facet .more a {
  margin-bottom: 18px;
  color: #3498db;
  display: none;
}
.facetNavigation .facet .allFacetValues ul {
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.facetNavigation .facet .allFacetValues .lessFacetValues {
  display: block;
}
.facetNavigation .facet .allFacetValues.closed ul {
  height: 0 !important;
}
.facetNavigation .facet .allFacetValues.closed .moreFacetValues {
  display: block;
}
.facetNavigation .facet .allFacetValues.closed .lessFacetValues {
  display: none;
}
.facetNavigation .small_detail h2 {
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.facetNavigation .small_detail h2 a {
  font-size: 14px;
  color: #34715b;
}
.facetNavigation .small_detail .link-list {
  margin-bottom: 17px;
}
.facetNavigation #categoryResultsList > li {
  padding: 16px 0;
  border-top: 1px solid #b3b3b3;
}
.facetNavigation #categoryResultsList > li:last-child {
  border-bottom: 1px solid #b3b3b3;
}
.facetNavigation #categoryResultsList > li h2 {
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}
.facetNavigation #categoryResultsList > li h2:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 1px;
  width: 11px;
  height: 11px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -120px 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .facetNavigation #categoryResultsList > li h2:after {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.facetNavigation #categoryResultsList > li h2.closed:after {
  background-position: -100px 0;
}
.facetNavigation #categoryResultsList > li h2.ignore:after {
  content: " ";
  background: none;
}
.facetNavigation #categoryResultsList > li ul {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.facetNavigation #categoryResultsList > li ul.closed {
  height: 0 !important;
}
.facetNavigation #categoryResultsList > li ul li {
  margin-top: 14px;
  padding-left: 16px;
}
.facetNavigation #categoryResultsList > li ul li a {
  color: #4e4e4e;
}
.facetNavigation .link-list ul {
  margin-bottom: 17px;
}
.facetNavigation .link-list ul li {
  margin-top: 14px;
  padding-left: 16px;
}
.facetNavigation .link-list ul li a {
  color: #4e4e4e;
}
.facetNavigation .left-column-spiff {
  margin-top: 30px;
  border: 1px solid #b3b3b3;
}
.facetNavigation .left-column-spiff img {
  width: 100%;
  height: auto;
  display: block;
}
.facetNavigation .nav_column .facet {
  padding-top: 0;
  border-bottom: none;
}
/*--------------------------------------------------------------
    Product Listing Page
--------------------------------------------------------------*/
.page-productList #globalMessages,
.page-search #globalMessages,
.pageType-CategoryPage #globalMessages {
  margin-bottom: 19px;
}
.page-productList h1,
.page-search h1,
.pageType-CategoryPage h1 {
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 9px;
}
.page-productList .span-18,
.page-search .span-18,
.pageType-CategoryPage .span-18 {
  float: right;
  width: 768px;
  border-top: 1px solid #b3b3b3;
}
.pageType-CategoryPage .span-18 {
  border-top: none;
}
.page-productList .paginationBar .sortForm .sort-by,
.page-search .paginationBar .sortForm .sort-by {
  width: 270px;
}
.page-productList .paginationBar .sortForm .sort-by .custom-styled-select,
.page-search .paginationBar .sortForm .sort-by .custom-styled-select {
  width: 205px;
}
.page-productList .paginationBar .sortForm .limiter,
.page-search .paginationBar .sortForm .limiter {
  margin-left: 155px;
}
/*--------------------------------------------------------------
    Compare Block
--------------------------------------------------------------*/
.block_compare {
  padding: 12px 0 6px 0;
  margin-top: 16px;
  margin-bottom: 25px;
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
}
.block_compare h3 {
  font-size: 14px;
  display: inline-block;
  float: left;
  margin: 0 9px 0 0;
}
.block_compare ul {
  display: inline-block;
  width: 860px;
}
.block_compare ul li {
  float: left;
  font-size: 12px;
  line-height: 1;
  padding-top: 2px;
  margin: 0 17px 5px 0;
}
.block_compare ul li:last-child {
  margin-right: 0;
}
.block_compare ul li a {
  max-width: 200px;
  display: inline-block;
  height: 14px;
  color: #4e4e4e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.block_compare ul li a:before {
  content: "";
  display: inline-block;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -34px -105px;
  text-indent: -9000px;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  overflow: hidden;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .block_compare ul li a:before {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.block_compare ul li a:hover {
  color: #3498db;
}
.block_compare ul li a:hover:before {
  background-position: -47px -105px;
}
.block_compare .buttons-set {
  float: right;
  margin-top: 0;
}
.block_compare .buttons-set a {
  font-size: 14px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  display: block;
}
.ie8 .block_compare ul li,
.ie8 .block_compare ul li a {
  max-width: 195px;
}
/*--------------------------------------------------------------
    Product List
--------------------------------------------------------------*/
.product-grid {
  margin-bottom: 0;
  filter: none !important;
}
.product-grid .sale-badge + .amount {
  margin-top: 0;
}
.product-grid .sale-badge + .amount + .regular {
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 6px;
}
.product-grid .productListItem {
  float: left;
  width: 174px;
  min-height: 276px;
  margin-bottom: 58px;
  background-color: #ffffff;
}
.product-grid .productListItem.first {
  clear: both;
  margin-left: 0;
}
.product-grid .productListItem .product-image {
  width: 174px;
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  border: none;
  padding: 0;
  height: 260px;
}
.product-grid .productListItem .product-image .productMainLink {
  display: block;
}
.product-grid .productListItem .product-image img {
  display: block;
  width: 100%;
  height: auto;
  padding: 9px;
  border: 1px solid #b3b3b3;
}
.product-grid .productListItem .head {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 17px;
  color: #4e4e4e;
}
.product-grid .productListItem .contributor {
  margin-top: 7px;
}
.product-grid .productListItem .special-price {
  margin-top: 7px;
  margin-bottom: -1px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.product-grid .productListItem .special-price span {
  float: left;
  line-height: 14px;
}
.product-grid .productListItem .special-price:before {
  content: "";
  float: left;
  width: 40px;
  height: 14px;
  margin-right: 5px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -140px 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .product-grid .productListItem .special-price:before {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.product-grid .productListItem .price {
  margin-top: 7px;
}
.product-grid .productListItem .price.variant:before {
  content: "Stating at: ";
}
.product-grid .productListItem .special-price + .price {
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: normal;
}
.product-grid .productListItem .special-price + .price:before {
  content: "Reg. ";
}
.product-grid .productListItem .addToCompareList,
.product-grid .productListItem .removeFromCompareList {
  display: block;
  margin-top: 7px;
}
.product-grid .productListItem .content > span {
  display: block;
  margin-top: 7px;
  color: #34715b;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.product-grid .productListItem .cod_badge {
  width: 133px;
  height: 18px;
  background: url('../images/cod_badge.png');
  background-size: 100% auto;
  margin: 4px 3px 4px 0;
}
.product-grid .product-image:hover .quick-shop-botton,
.product-grid .image-wrapper:hover .quick-shop-botton {
  display: block;
}
.product-grid .product-image:hover img,
.product-grid .image-wrapper:hover img {
  border-color: #3498db;
}
.product-grid .product-image .quick-shop-botton,
.product-grid .image-wrapper .quick-shop-botton {
  display: none;
  position: absolute;
  width: 100%;
  height: 25px;
  line-height: 25px;
  bottom: 0;
  text-align: center;
  background-color: #3498db;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 9;
}
.product-grid .product-image {
  position: relative;
}
.product-grid .product-image .cod_ribbon {
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 85px;
  background: url('../images/cod_ribbon.png');
  background-size: 100% auto;
}
/*--------------------------------------------------------------
    Modal
--------------------------------------------------------------*/
#modal div.inner {
  max-width: 729px;
}
#modal div.inner .message {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 200ms ease-in;
  -moz-transition: height 200ms ease-in;
  -o-transition: height 200ms ease-in;
  transition: height 200ms ease-in;
}
#modal div.inner .message.active,
#modal div.inner .message.active1 {
  height: 46px;
}
#modal div.inner .message.active2 {
  height: 92px;
}
#modal div.inner .message.active3 {
  height: 138px;
}
#modal div.inner .message > div {
  line-height: 1;
  font-size: 14px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  background-color: #3498db;
  padding: 15px 0;
  border: 1px solid #3498db;
}
#modal div.inner .message > div.error {
  background-color: #ff4d4d;
  border-color: #ff4d4d;
}
#modal div.inner #lightbox {
  width: 100%;
  border: 1px solid #3498db;
  padding: 26px;
}
#modal div.inner .message.active + #lightbox {
  border-top: none;
}
#modal div.inner .product-header {
  margin-bottom: 24px;
}
#modal div.inner .product-header .left {
  float: left;
  width: 500px;
}
#modal div.inner .product-header .left a h1 {
  color: #3498db;
  text-transform: capitalize;
  margin-bottom: 0;
}
#modal div.inner .product-header .quickview-goto-product {
  float: right;
  padding-top: 10px;
}
#modal div.inner .product-image {
  width: 251px;
  margin-bottom: 24px;
  float: left;
}
#modal div.inner .product-image .item {
  width: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  overflow: hidden;
  z-index: 50;
  height: 344px;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
#modal div.inner .product-image .item.active {
  position: relative;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 55;
}
#modal div.inner .product-image .product-carousel img {
  display: block;
  width: 229px;
  height: auto;
}
#modal div.inner .product-image .carousel-container .carousel {
  overflow: inherit;
}
#modal div.inner .product-image .carousel-container .hero-rotator {
  border-bottom: none;
}
#modal div.inner .product-image .carousel-nav {
  bottom: -37px;
}
#modal div.inner .product-detail {
  float: right;
  width: 384px;
  border-top: 1px solid #b3b3b3;
}
#modal div.inner .product-detail .product-top {
  margin-bottom: 76px;
}
#modal div.inner .product-detail .product-meta {
  width: 384px;
}
#modal div.inner .product-detail .product-meta .price .regular {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
#modal div.inner .product-detail .product-meta .promotion {
  display: block;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #b3b3b3;
  padding: 14px 0;
  color: #3498db;
  font-size: 14px;
}
#modal div.inner .product-detail .product-meta .qty {
  float: left;
}
#modal div.inner .product-detail .product-meta .qty input {
  margin-right: 12px;
}
#modal div.inner .product-detail .product-meta .add-to-cart button {
  width: 156px;
  line-height: 1;
  padding: 11px 0 10px 0;
  text-align: center;
  display: inline-block;
  height: 40px;
}
#modal div.inner .product-detail .product-meta .add-to-cart a {
  display: inline-block;
  line-height: 17px;
}
#modal div.inner .product-detail .product-meta .stock_message {
  display: none;
}
#modal div.inner .product-detail .product-meta .summary {
  font-size: 14px;
  line-height: 22px;
  border-top: 1px solid #b3b3b3;
  padding-top: 18px;
}
#modal div.inner .product-detail .out-of-stock p {
  font-size: 13px;
}
#modal div.inner .product-detail .out-of-stock .singlet input[type=text] {
  width: 290px;
}
.modal-paragraph {
  display: none;
}
#modal .modal-paragraph {
  display: block;
}
/*--------------------------------------------------------------
    Forgot Password page
--------------------------------------------------------------*/
.forgotPassword .forgottenPwd {
  border: none;
  padding: 0;
}
.forgotPassword .close {
  display: none;
}
/*--------------------------------------------------------------
    Category Page
--------------------------------------------------------------*/
.category-spiff:before + div {
  border-top: 1px solid #b3b3b3;
}
.category-spiff a.button.shop-now {
  border: 1px solid #3498db;
  padding: 10px 35px 9px;
}
.category-spiff.bottom {
  margin-top: 15px;
}
.category-spiff.last .yCmsComponent:first-child {
  padding-top: 25px;
  margin-top: 4px;
  border-top: 1px solid #b3b3b3;
}
.category-grid li {
  float: left;
  width: 174px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  margin: 0 24px 22px 0;
  min-height: 283px;
}
.category-grid li:last-child {
  margin-right: 0;
}
.category-grid li .product-image img {
  display: inline-block;
}
.two-level-category-list {
  padding-top: 25px;
}
.yCmsContentSlot + .two-level-category-list {
  margin-top: 25px;
  border-top: 1px solid #b3b3b3;
}
.two-level-category-list h1 {
  text-transform: capitalize;
  margin-bottom: 0;
}
.two-level-category-list ul li {
  margin-bottom: 25px;
}
.two-level-category-list ul.first {
  margin-top: 6px;
}
.two-level-category-list ul:last-child li {
  margin-bottom: 26px;
}
/*--------------------------------------------------------------
    404
--------------------------------------------------------------*/
.page-notFound .top {
  border-bottom: 1px solid #b3b3b3;
}
.page-notFound .top div p {
  background: none;
  color: #34715b;
  font-size: 21px;
}
.page-notFound .top div p .container {
  padding: 0;
}
.page-notFound h1 {
  line-height: 1;
  padding-bottom: 11px;
}
.page-notFound .middle {
  border: 1px solid #b3b3b3;
  margin: 40px auto;
  padding: 9px;
  font-size: 24px;
  line-height: 30px;
}
.page-notFound .middle > div {
  position: relative;
  display: block;
  margin: 0;
}
.page-notFound .middle > div div.col-text {
  position: absolute;
  top: 0;
  width: 100%;
  margin: 0;
  padding: 44px 82px 0;
  text-align: center;
  height: 100%;
}
.page-notFound .middle > div div.col-text p {
  font-size: 24px;
  line-height: 30px;
}
.page-notFound .middle > div .buttons-set {
  position: absolute;
  left: 50%;
  bottom: 170px;
  width: 224px;
  margin-left: -112px;
}
.page-notFound .middle .col-image {
  display: block;
  width: 100%;
}
.page-notFound .middle .col-image img {
  display: block;
}
/*--------------------------------------------------------------
    Shopping Cart / Checkout
--------------------------------------------------------------*/
.cart .potential-promotion,
.checkout .potential-promotion,
.order-footer .potential-promotion {
  display: block;
  width: 100%;
  padding: 4px 11px 14px 11px;
  background-color: #eaf1ee;
  color: #34715b;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-family: 'Gotham SSm 4i', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  margin-top: 20px;
}
.cart .potential-promotion li,
.checkout .potential-promotion li,
.order-footer .potential-promotion li {
  margin-top: 10px;
}
.cart .details .title + .notice,
.checkout .details .title + .notice {
  line-height: 14px;
  margin-bottom: 8px;
  margin-top: -2px;
}
.cart .col2-right,
.checkout .col2-right {
  width: 278px;
}
.cart .col2-right .cart-shadow,
.checkout .col2-right .cart-shadow {
  border-top: solid 1px #b3b3b3;
  background-color: #f5f5f5;
  padding: 0 12px 12px;
}
.cart .col2-right #coupon,
.checkout .col2-right #coupon {
  width: 172px;
  border-right: none;
}
.cart .col2-right a.doCheckoutBut,
.checkout .col2-right a.doCheckoutBut,
.cart .col2-right .paypal,
.checkout .col2-right .paypal {
  width: 100%;
  height: 50px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 20px;
  display: block;
  line-height: 30px;
}
.cart .col2-right .paypal,
.checkout .col2-right .paypal {
  background-color: #ffffff;
  color: #3498db;
  border: 1px solid #3498db;
  font-size: 12px;
  line-height: 14px;
  position: relative;
  padding-left: 14px;
  text-align: left;
}
.cart .col2-right .paypal:after,
.checkout .col2-right .paypal:after {
  position: absolute;
  top: 17px;
  right: 16px;
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 71px;
  height: 19px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: 0 -130px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .cart .col2-right .paypal:after,
  .checkout .col2-right .paypal:after {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.cart .col2-right .customer-service,
.checkout .col2-right .customer-service {
  margin-top: 20px;
  padding: 12px 0;
  border-top: 1px solid #b3b3b3;
}
.cart .col2-right .customer-service p,
.checkout .col2-right .customer-service p {
  margin-bottom: 0;
}
.cart .col2-right .pickup-notice,
.checkout .col2-right .pickup-notice {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: -5px;
}
.cart .accordion,
.checkout .accordion {
  border-top: 0;
}
.cart .accordion h2,
.checkout .accordion h2 {
  line-height: 32px;
}
.cart .accordion h2:after,
.checkout .accordion h2:after {
  top: 20px;
}
.cart .accordion button,
.checkout .accordion button {
  margin-top: 0;
  width: 80px;
  height: 39px;
}
.cart .couponMessage,
.checkout .couponMessage {
  display: none;
}
.cart button.apply,
.checkout button.apply {
  display: block;
}
.cart button.remove,
.checkout button.remove {
  display: none;
}
.cart .hasCoupon #coupon,
.checkout .hasCoupon #coupon {
  width: 155px;
}
.cart .hasCoupon button,
.checkout .hasCoupon button {
  width: 97px;
}
.cart .hasCoupon button.apply,
.checkout .hasCoupon button.apply {
  display: none;
}
.cart .hasCoupon button.remove,
.checkout .hasCoupon button.remove {
  display: block;
}
.cart .hasCoupon .couponMessage,
.checkout .hasCoupon .couponMessage {
  display: block;
}
.cart .cart-table td,
.checkout .cart-table td,
.order-detail .cart-table td {
  border-top: solid 1px #b3b3b3;
  border-bottom: 0;
}
.cart .cart-table tr.imprinting td,
.checkout .cart-table tr.imprinting td,
.order-detail .cart-table tr.imprinting td {
  padding-top: 10px;
  border-top: 1px solid #f5f5f5;
  border-bottom: solid 1px #b3b3b3;
}
.cart .cart-table tr.imprinting .imprinting-edit-button,
.checkout .cart-table tr.imprinting .imprinting-edit-button,
.order-detail .cart-table tr.imprinting .imprinting-edit-button {
  display: block;
}
.cart .cart-table tr.imprinting .imprinting-edit,
.checkout .cart-table tr.imprinting .imprinting-edit,
.order-detail .cart-table tr.imprinting .imprinting-edit {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #b3b3b3;
}
.cart .cart-table tr.imprinting #font-select,
.checkout .cart-table tr.imprinting #font-select,
.order-detail .cart-table tr.imprinting #font-select {
  margin-top: 15px;
  font-size: 13px;
  line-height: 15px;
}
.cart .cart-table tr.imprinting #font-select div.custom-styled-radio,
.checkout .cart-table tr.imprinting #font-select div.custom-styled-radio,
.order-detail .cart-table tr.imprinting #font-select div.custom-styled-radio {
  margin-right: 6px;
  float: left;
}
.cart .cart-table tr.imprinting #font-select span,
.checkout .cart-table tr.imprinting #font-select span,
.order-detail .cart-table tr.imprinting #font-select span {
  float: left;
  display: inline-block;
  height: 16px;
  width: 70px;
  text-indent: -9000px;
  overflow: hidden;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: 0 -172px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .cart .cart-table tr.imprinting #font-select span,
  .checkout .cart-table tr.imprinting #font-select span,
  .order-detail .cart-table tr.imprinting #font-select span {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.cart .cart-table tr.imprinting #font-select .script-font,
.checkout .cart-table tr.imprinting #font-select .script-font,
.order-detail .cart-table tr.imprinting #font-select .script-font {
  margin-bottom: 13px;
}
.cart .cart-table tr.imprinting #font-select .script-font span,
.checkout .cart-table tr.imprinting #font-select .script-font span,
.order-detail .cart-table tr.imprinting #font-select .script-font span {
  margin-top: 2px;
}
.cart .cart-table tr.imprinting #font-select .block-font span,
.checkout .cart-table tr.imprinting #font-select .block-font span,
.order-detail .cart-table tr.imprinting #font-select .block-font span {
  background-position: 0 -190px;
}
.cart .total-price,
.checkout .total-price,
.order-detail .total-price {
  min-width: 135px;
}
.cart .sale,
.checkout .sale,
.order-detail .sale {
  margin-top: 5px;
}
.cart .sale-badge + .amount,
.checkout .sale-badge + .amount,
.order-detail .sale-badge + .amount {
  display: inline-block;
  line-height: 14px;
  margin-top: 0;
  margin-left: 5px;
}
.cart #orderTotals,
.checkout #orderTotals,
.order-detail #orderTotals {
  width: 100%;
  margin-top: 18px;
}
.cart #orderTotals th,
.checkout #orderTotals th,
.order-detail #orderTotals th {
  text-align: left;
  font-size: 14px;
  color: #34715b;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 15px;
}
.cart #orderTotals td,
.checkout #orderTotals td,
.order-detail #orderTotals td {
  padding-bottom: 15px;
  text-align: right;
}
.cart #orderTotals td:first-child,
.checkout #orderTotals td:first-child,
.order-detail #orderTotals td:first-child {
  text-align: left;
}
.cart #orderTotals tr.tax td:first-child,
.checkout #orderTotals tr.tax td:first-child,
.order-detail #orderTotals tr.tax td:first-child {
  width: 120px;
}
.cart #orderTotals .tax-estimate td,
.checkout #orderTotals .tax-estimate td,
.order-detail #orderTotals .tax-estimate td {
  padding-bottom: 0;
}
.cart #orderTotals .tax-estimate .slide,
.checkout #orderTotals .tax-estimate .slide,
.order-detail #orderTotals .tax-estimate .slide {
  display: none;
  border-top: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
  padding: 15px 0;
  margin-bottom: 20px;
}
.cart #orderTotals .tax-estimate .form-list,
.checkout #orderTotals .tax-estimate .form-list,
.order-detail #orderTotals .tax-estimate .form-list {
  width: auto;
}
.cart .grand-total,
.checkout .grand-total,
.order-detail .grand-total {
  width: 100%;
}
.cart .grand-total td,
.checkout .grand-total td,
.order-detail .grand-total td {
  text-align: right;
  font-size: 12px;
  color: #34715b;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.cart .grand-total td:first-child,
.checkout .grand-total td:first-child,
.order-detail .grand-total td:first-child {
  text-align: left;
}
.cart .digital-only-items,
.checkout .digital-only-items,
.order-detail .digital-only-items {
  margin-top: 20px;
}
.page-cartPage h1 {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  display: inline;
}
.page-cartPage .link-header {
  margin-top: 8px;
  float: right;
}
.page-cartPage .link-header .print {
  margin-right: 15px;
}
.page-cartPage .col2-left .product-attributes li {
  margin-top: 6px;
}
.page-cartPage .col2-left .actions {
  margin-bottom: 0;
}
.page-cartPage .col2-right .cart-id {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 20px 0;
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
}
.page-cartPage div.title,
.page-cartPage .flash-msg {
  margin-bottom: 20px;
}
/*--------------------------------------------------------------
    Checkout
--------------------------------------------------------------*/
.moby.shade.alt .modal-form {
  margin: 80px auto 0;
  width: 576px;
  position: relative;
}
.moby.shade.alt .modal-form .close {
  right: -45px;
  top: 5px;
}
.moby.shade.alt .modal-form h1 {
  font-size: 24px;
  text-transform: none;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 20px;
}
.checkout {
  margin-top: 20px;
}
.checkout .col2-left,
.checkout .col2-right {
  margin-top: 30px;
}
.checkout .col2-left {
  border-top: solid 1px #b3b3b3;
}
.checkout .col2-left {
  padding-top: 20px;
}
.checkout .section {
  border-top: solid 1px #b3b3b3;
  padding-top: 20px;
  margin-top: 20px;
}
.checkout .shipping-type {
  border-bottom: solid 1px #b3b3b3;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.checkout .shipping-type h3,
.checkout .shipping-type p {
  margin-bottom: 15px;
}
.checkout .shipping-type li {
  float: left;
  margin-right: 70px;
}
.checkout .shipping-type li input {
  vertical-align: middle;
}
.checkout .cart-table .product-summary .price {
  line-height: 12px;
}
.checkout .cart-table .product-summary .manufacturer {
  font-size: 12px;
}
.checkout .cart-table .product-attributes {
  margin: 8px 0;
}
.checkout .cart-table .product-attributes li {
  margin-bottom: 2px;
}
.checkout h4 {
  font-size: 14px;
  color: #4e4e4e;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.checkout p {
  font-size: 14px;
}
.checkout .customer-service {
  border-top: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
  margin-bottom: 20px;
}
.checkout .customer-service p {
  font-size: 12px;
}
.checkout .accepted-cards {
  padding-bottom: 20px;
  border-bottom: solid 1px #b3b3b3;
}
.checkout .accepted-cards img {
  width: 100%;
  height: auto;
}
.checkout .method-instore .store-selection form {
  width: 218px;
}
.checkout .method-instore .customer-info {
  overflow: hidden;
  height: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 1500ms ease-out;
  -moz-transition: opacity 1500ms ease-out;
  -o-transition: opacity 1500ms ease-out;
  transition: opacity 1500ms ease-out;
}
.checkout .method-instore p.instructions {
  width: 475px;
  margin-top: 6px;
}
.checkout .method-instore p.hint {
  margin-top: 5px;
}
.checkout .method-instore #store-selection-msgs .flash-msg {
  margin-bottom: 20px;
}
.checkout .method-instore .buttons-set {
  height: 40px;
  margin-top: 40px;
}
.checkout .method-instore .store-selection .buttons-set {
  overflow: hidden;
  -webkit-transition: all 350ms ease-out;
  -moz-transition: all 350ms ease-out;
  -o-transition: all 350ms ease-out;
  transition: all 350ms ease-out;
}
.checkout .method-instore #selected-store {
  font-size: 14px;
  line-height: 22px;
}
.checkout .method-instore.store-selected .store-selection .buttons-set {
  height: 0;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.checkout .method-instore.store-selected .customer-info {
  height: auto;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.checkout .method-instore.store-changed .store-selection .buttons-set {
  height: 40px;
  margin: 40px;
}
.checkout #address-msgs {
  margin-bottom: 20px;
}
.checkout .col2-right button.large,
.checkout .col2-right a.large {
  width: 100%;
  margin: 20px 0 0;
  display: block;
  line-height: 20px;
}
.checkout .applied-gc {
  margin-top: 15px;
  display: block;
}
.checkout .gc-active {
  margin-top: 10px;
}
.checkout .gc-active .link-close {
  float: right;
}
.checkout .ma-delivery-selector {
  position: relative;
}
.checkout .tooltip {
  background-color: #f5f5f5;
  border: solid 1px #b3b3b3;
  left: 170px;
  position: absolute;
  top: -27px;
  width: 440px;
  padding: 7px 15px;
  z-index: 9;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: -1;
  -webkit-transition: opacity 250ms ease-in;
  -moz-transition: opacity 250ms ease-in;
  -o-transition: opacity 250ms ease-in;
  transition: opacity 250ms ease-in;
}
.checkout .tooltip.open {
  z-index: 1;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.checkout .tooltip p {
  font-size: 12px;
  margin-bottom: 0;
}
.checkout .tooltip .link-close {
  position: absolute;
  right: 6px;
  top: 6px;
}
.checkout .tooltip:after,
.checkout .tooltip:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.checkout .tooltip:after {
  border-color: rgba(241, 241, 241, 0);
  border-right-color: #f1f1f1;
  border-width: 6px;
  margin-top: -6px;
}
.checkout .tooltip:before {
  border-color: rgba(179, 179, 179, 0);
  border-right-color: #b3b3b3;
  border-width: 7px;
  margin-top: -7px;
}
.address-list {
  margin-left: -15px;
  margin-bottom: 15px;
}
.address-list > li {
  clear: both;
  padding: 15px 15px;
  cursor: pointer;
  border: 1px solid #ffffff;
}
.address-list > li.selected {
  background-color: #f5f5f5;
}
.address-list > li .item {
  float: left;
  padding: 0px 0px;
  line-height: 18px;
  max-width: 720px;
}
.address-list > li .item p {
  font-size: 12px;
  margin: 0;
  line-height: 16px;
}
.address-list > li .address-controls {
  float: left;
  margin-left: 30px;
}
.address-list > li .custom-styled-radio,
.address-list > li .custom-styled-checkbox {
  float: left;
  margin-right: 15px;
}
.address-list > li .address-action {
  float: left;
  margin-right: 15px;
}
.address-list > li .address-action a.small {
  line-height: 18px;
}
.address-list > li p.default-notice {
  float: left;
  margin: 0 15px 0 0;
  font-size: 9px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  white-space: nowrap;
}
.address-list > li.new-address {
  cursor: pointer;
}
.address-list > li.new-address p {
  line-height: 130px;
  text-align: center;
}
.multi-address-list li {
  cursor: default;
  background-color: #f5f5f5;
}
#add-address-form-non-modal {
  display: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
.delivery-options .delivery-method-header {
  margin-bottom: 12px;
}
.delivery-options .delivery-method-header + p {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.delivery-options .delivery-method-header + p a {
  font-size: 12px;
  margin-left: 15px;
}
.delivery-options .form-list {
  width: 290px;
}
.delivery-options .order-items {
  margin-top: 25px;
}
.delivery-options .buttons-set {
  margin-top: 40px;
}
.ma-delivery-addresses .col2-left {
  padding-top: 0;
}
.ma-delivery-addresses .buttons-set {
  margin-top: 40px;
}
.ma-delivery-addresses .data-table .product-image,
.ma-delivery-addresses .data-table .title {
  margin-top: 0;
}
.ma-delivery-addresses .data-table p {
  font-size: 12px;
  margin-bottom: 0;
}
.ma-delivery-addresses .data-table p.title {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.ma-delivery-addresses .data-table td {
  padding-top: 15px;
  padding-bottom: 15px;
}
.ma-delivery-addresses .data-table td.address-select {
  padding-right: 40px;
}
.ma-delivery-addresses .data-table .form-list {
  width: 100%;
  max-width: 440px;
}
.ma-delivery-options .shipping-group {
  margin-bottom: 37px;
}
.ma-delivery-options .shipping-to {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 14px;
}
.ma-delivery-options .shipping-to a {
  margin-left: 15px;
  font-size: 12px;
}
.ma-delivery-options .accordion-group {
  margin-top: 5px;
}
.payment .col2-left {
  border-top: none;
  padding-top: 0;
}
.payment .col-left {
  width: 455px;
  float: left;
}
.payment .col-right {
  width: 252px;
  float: right;
}
.payment #payment-messages .flash-msg {
  margin-bottom: 20px;
}
.payment #payment-methods {
  width: 350px;
}
.payment .payment-type {
  margin-bottom: 17px;
  border-top: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
}
.payment .payment-type h3 {
  margin: 17px 0 15px;
}
.payment .payment-type .form-list {
  width: 455px;
}
.payment .payment-type .form-list li {
  float: left;
  margin-right: 20px;
  margin-bottom: 17px;
  position: relative;
}
.payment .payment-type .form-list .tooltip {
  bottom: -116px;
  left: -179px;
  right: auto;
  top: auto;
  width: 455px;
}
.payment .payment-type .form-list .tooltip em {
  font-weight: 600;
}
.payment .payment-type .form-list .tooltip:after,
.payment .payment-type .form-list .tooltip:before {
  right: auto;
  left: 179px;
  top: -6px;
}
.payment .payment-type .form-list .tooltip:after {
  border-color: rgba(241, 241, 241, 0);
  border-bottom-color: #f1f1f1;
  border-width: 6px;
  margin-top: -6px;
}
.payment .payment-type .form-list .tooltip:before {
  border-color: rgba(179, 179, 179, 0);
  border-bottom-color: #b3b3b3;
  border-width: 6px;
  margin-top: -7px;
}
.payment .card-type li {
  float: left;
  width: 51px;
  height: 32px;
  margin: 0 0 5px 4px;
  text-indent: -9999px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -142px -103px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .payment .card-type li {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.payment .card-type li:first-child {
  margin-left: 0;
}
.payment .card-type li.active {
  background-position: -142px -140px;
}
.payment .card-type li.mastercard {
  background-position: -195px -103px;
}
.payment .card-type li.mastercard.active {
  background-position: -195px -140px;
}
.payment .card-type li.amex {
  background-position: -251px -103px;
}
.payment .card-type li.amex.active {
  background-position: -251px -140px;
}
.payment .card-type li.discover {
  background-position: -307px -103px;
}
.payment .card-type li.discover.active {
  background-position: -307px -140px;
}
.payment .cc-verification {
  position: relative;
}
.payment .cc-verification label {
  white-space: nowrap;
}
.payment .cc-verification label.error {
  position: absolute;
}
.payment .cc-verification .input-text,
.payment .cc-verification input {
  width: 120px;
  display: inline-block;
}
.payment .cc-verification > a {
  font-size: 10px;
  margin-left: 8px;
}
.payment .cc-verification .cvv-tooltip {
  display: none;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  left: 300px;
  top: -135px;
  -webkit-transition: opacity 250ms ease-in;
  -moz-transition: opacity 250ms ease-in;
  -o-transition: opacity 250ms ease-in;
  transition: opacity 250ms ease-in;
  overflow: hidden;
}
.payment .cc-verification .cvv-tooltip.open {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  overflow: inherit;
}
.payment .cc-verification .cvv-tooltip a {
  position: absolute;
  right: 3px;
  top: -17px;
}
.payment .save-cc {
  margin-top: 20px;
}
.payment .cc-list {
  float: left;
  width: 456px;
}
.payment .cc-list .address-list li .item {
  max-width: 405px;
}
.payment .card-form {
  overflow: hidden;
  height: 0;
  clear: both;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: all 350ms ease-out;
  -moz-transition: all 350ms ease-out;
  -o-transition: all 350ms ease-out;
  transition: all 350ms ease-out;
}
.payment .card-form.active {
  height: auto;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  overflow: visible;
}
.payment .card-form .form-list {
  width: auto;
}
.payment .billing-address {
  border-top: solid 1px #b3b3b3;
  margin-top: 7px;
  padding-top: 17px;
}
.payment .billing-address h3 + p {
  font-size: 12px;
  margin-top: 10px;
}
.payment .billing-address .address-msgs {
  margin-bottom: 20px;
}
.payment .billing-email {
  border-top: solid 1px #b3b3b3;
}
.payment .billing-email h3 {
  margin: 18px 0;
}
.payment .buttons-set {
  clear: both;
}
.payment .buttons-set.paypal-mode {
  margin: 104px 0 0 0px;
}
.checkout .accordion-form h2 {
  line-height: 32px;
}
.checkout .accordion-form .singlet input[type=text] {
  width: 172px;
}
.checkout .accordion-form .singlet button {
  padding-left: 19px;
  padding-right: 19px;
}
.checkout .step-summary h4,
.order-detail .step-summary h4 {
  white-space: nowrap;
  margin-bottom: 10px;
}
.checkout .step-summary .edit-link,
.order-detail .step-summary .edit-link {
  line-height: 16px;
  font-size: 12px;
  margin-left: 20px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.checkout .step-summary .block,
.order-detail .step-summary .block {
  float: left;
  width: 165px;
  margin-left: 35px;
}
.checkout .step-summary h3 + .block,
.order-detail .step-summary h3 + .block,
.checkout .step-summary .block:first-child,
.order-detail .step-summary .block:first-child {
  margin-left: 0;
}
.checkout .pickup-summary .block,
.order-detail .pickup-summary .block {
  width: 230px;
}
.checkout .summary-item,
.order-detail .summary-item {
  font-size: 12px;
  line-height: 18px;
}
.checkout.review h3,
.order-detail.review h3 {
  margin-bottom: 15px;
}
.checkout .order-notes,
.order-detail .order-notes {
  margin-top: 20px;
  margin-bottom: 10px;
}
.checkout .order-notes .form-list,
.order-detail .order-notes .form-list {
  width: 100%;
}
.checkout .order-notes .form-list input#orderNotes,
.order-detail .order-notes .form-list input#orderNotes {
  width: 100%;
}
.checkout .order-notes .labelify .input-text label:first-child,
.order-detail .order-notes .labelify .input-text label:first-child {
  font-size: 14px;
}
.checkout .order-items .accordion-group .ac-header.active h4,
.order-detail .order-items .accordion-group .ac-header.active h4 {
  padding-bottom: 0;
}
.checkout .order-items .accordion-group .ac-content,
.order-detail .order-items .accordion-group .ac-content {
  margin-bottom: 0;
  padding-left: 0;
}
.checkout .cart-table th,
.order-detail .cart-table th {
  color: #b3b3b3;
  border-top: none;
}
.checkout .cart-table tbody tr.last td,
.order-detail .cart-table tbody tr.last td {
  border-bottom: none;
}
.checkout .cart-table .quantity,
.order-detail .cart-table .quantity {
  font-size: 14px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.checkout .cart-table .product-image,
.order-detail .cart-table .product-image,
.checkout .cart-table .title,
.order-detail .cart-table .title,
.checkout .cart-table .price,
.order-detail .cart-table .price {
  margin-top: 0;
}
.checkout-review .shipping-to,
.checkout-confirmation .shipping-to,
.order-detail .shipping-to {
  margin-bottom: 11px;
}
.checkout-review .shipping-to span,
.checkout-confirmation .shipping-to span,
.order-detail .shipping-to span {
  color: #34715b;
}
.checkout-review .accordion-group,
.checkout-confirmation .accordion-group,
.order-detail .accordion-group {
  margin-top: 17px;
}
.checkout-review .order-items,
.checkout-confirmation .order-items,
.order-detail .order-items {
  margin-bottom: 40px;
}
.checkout-review .step-summary h3,
.checkout-confirmation .step-summary h3,
.order-detail .step-summary h3 {
  margin-bottom: 15px;
}
.page-order .title-container h1 {
  margin-top: 20px;
}
.page-order .title-container {
  position: relative;
}
.page-order .title-container .title-link {
  position: absolute;
  right: 0;
  top: 6px;
}
.checkout-confirmation .order-intro {
  border-bottom: solid 1px #b3b3b3;
  padding-bottom: 8px;
}
.checkout-confirmation .order-intro p,
.checkout-confirmation .order-intro .copy {
  width: 960px;
  float: left;
}
.checkout-confirmation .page-actions {
  float: right;
  margin-top: 3px;
}
.checkout-confirmation .col2-left {
  border-top: none;
  margin-top: 0;
}
.checkout-confirmation .col2-right {
  border-top: solid 1px #b3b3b3;
  margin-top: 20px;
}
.checkout-confirmation .col2-right .button.large {
  margin-top: 5px;
  padding: 14px 0;
}
.checkout-confirmation .order-meta {
  border-bottom: solid 1px #b3b3b3;
  padding-bottom: 18px;
  margin-bottom: 20px;
}
.checkout-confirmation .step-summary {
  margin-bottom: 30px;
}
.checkout-confirmation .col2-right .potential-promotion {
  margin-top: 0;
  margin-bottom: 15px;
}
.checkout-confirmation .form-list {
  width: 100%;
  margin-top: 20px;
}
.checkout-confirmation .form-list li.fields .field {
  margin-left: 20px;
}
.checkout-confirmation .form-list li.fields .field:first-child {
  margin-right: 0;
  margin-left: 0;
}
.checkout-confirmation .guest-registration {
  border-bottom: solid 1px #b3b3b3;
  padding-top: 15px;
  padding-bottom: 25px;
}
.checkout-confirmation .guest-registration h2 {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.checkout-confirmation .guest-registration .buttons-set {
  margin-top: 5px;
}
.product-compare .page-title {
  margin: 24px auto 20px auto;
  padding-bottom: 19px;
  border-bottom: 1px solid #b3b3b3;
}
.product-compare h1 {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  display: inline;
}
.product-compare .link-header {
  margin-top: 8px;
  float: right;
}
.product-compare .link-header .print {
  margin-right: 15px;
}
.product-compare .compare-products th {
  height: 50px;
  width: 160px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #b3b3b3;
}
.product-compare .compare-products th.label {
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: normal;
}
.product-compare .compare-products th.imageLabel,
.product-compare .compare-products th.removeLabel {
  border: none;
}
.product-compare .compare-products td {
  min-height: 50px;
  width: 233px;
  border-bottom: 1px solid #b3b3b3;
  vertical-align: middle;
  padding-right: 35px;
}
.product-compare .compare-products td.spacing {
  width: 24px;
  border: none;
}
.product-compare .compare-products td.last {
  width: 198px;
  max-width: 198px;
  padding-right: 0;
}
.product-compare .compare-products td p {
  margin: -7px 0;
  line-height: 24px;
}
.product-compare .compare-products .removeLinksForImage th {
  padding-bottom: 10px;
  height: auto;
}
.product-compare .compare-products .removeLinksForImage td {
  height: auto;
  border: none;
  text-align: right;
  padding-bottom: 10px;
}
.product-compare .compare-products .removeLinksForImage td a {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -261px 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .product-compare .compare-products .removeLinksForImage td a {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.product-compare .compare-products tr.image th {
  padding-bottom: 18px;
  padding-top: 0;
}
.product-compare .compare-products tr.image td.image {
  height: auto;
  border-bottom: none;
  vertical-align: bottom;
}
.product-compare .compare-products tr.image td.image a {
  width: 100%;
  border: 1px solid #b3b3b3;
  padding: 11px;
  display: block;
}
.product-compare .compare-products tr.image td.image a img {
  width: 100%;
  height: auto;
  display: block;
}
.product-compare .compare-products tr.description td,
.product-compare .compare-products tr.price td,
.product-compare .compare-products tr.description th,
.product-compare .compare-products tr.price th {
  height: auto;
  padding: 18px 35px 19px 0;
  vertical-align: top;
}
.product-compare .compare-products tr.price .amount {
  margin-top: 0;
}
.product-compare .compare-products tr.price th,
.product-compare .compare-products tr.price .regular {
  line-height: 14px;
}
.product-compare .compare-products tr.price .regular + .regular {
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: normal;
}
.product-compare .compare-products tr.price td {
  padding: 17px 0 18px 0;
}
.product-compare .compare-products tbody tr {
  min-height: 50px;
}
.product-compare .compare-products tbody td,
.product-compare .compare-products tbody th {
  border: none;
  line-height: 18px;
  padding: 5px 35px 5px 0;
}
.product-compare .compare-products tbody tr.even {
  background-color: #f1f1f2;
}
.product-compare .compare-products tbody tr.last td.spacing,
.product-compare .compare-products tbody tr.last th.spacing {
  border: none;
}
.product-compare .compare-products tfoot td,
.product-compare .compare-products tfoot th {
  border: none;
  padding-bottom: 0;
  padding-top: 0;
  vertical-align: top;
}
.product-compare .compare-products tfoot .out-of-stock {
  padding-top: 20px;
  display: none;
}
.product-compare .compare-products tfoot .out-of-stock p {
  margin: 0 0 5px;
  line-height: 16px;
}
.product-compare .compare-products tfoot .out-of-stock button {
  margin-top: 10px;
  width: 100%;
  float: none;
}
.product-compare .compare-products tfoot .out-of-stock input[type=text] {
  width: 100%;
  float: none;
}
.product-compare .compare-products tfoot .out-of-stock label.error {
  margin-top: 10px;
}
.product-compare .compare-products tfoot .add-to-cart {
  padding-top: 20px;
}
.product-compare .compare-products tfoot .add-to-cart button {
  width: 100%;
  display: inline-block;
  height: 40px;
}
.product-compare .compare-products input.qty + a.button {
  margin-top: 0;
  height: 40px;
  line-height: 22px;
}
.product-compare .compare-products .add-to-wishlist {
  margin: 20px 0;
}
.product-compare .compare-products .flash-msg {
  margin: 10px 0;
  font-size: 12px;
}
.product-compare .compare-products .flash-msg .container {
  width: auto;
  padding: 8px 10px;
  text-align: center;
}
.product-compare .compare-products .availability-notice {
  display: none;
}
/*--------------------------------------------------------------
    My Account Pages
--------------------------------------------------------------*/
.login-register-page .login .remember,
.checkout-login .login .remember,
.login-register-page .login .whatisthis,
.checkout-login .login .whatisthis {
  display: inline-block;
}
.login-register-page .login .whatisthis,
.checkout-login .login .whatisthis {
  margin-left: 38px;
}
.login-register-page .login .social-login,
.checkout-login .login .social-login {
  margin-top: 50px;
  padding-top: 15px;
  border-top: 1px solid #b3b3b3;
}
.login-register-page .login .social-login img,
.checkout-login .login .social-login img {
  display: inline-block;
  margin-right: 7px;
}
.login-register-page .register,
.checkout-login .register {
  min-height: 450px;
  padding-left: 50px;
  border-left: 1px solid #b3b3b3;
}
.forgottenPwd {
  border: 1px solid #3498db;
  padding: 26px;
}
.my-account-page .col-left {
  float: left;
  width: 252px;
}
.my-account-page .col-left h3 {
  border-bottom: 1px solid #b3b3b3;
  text-transform: uppercase;
  font-size: 22px;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.my-account-page .col-left ul li {
  margin-bottom: 10px;
}
.my-account-page .col-left ul li.active a {
  color: #3498db !important;
}
.my-account-page .col-left ul li a {
  color: #4e4e4e;
}
.my-account-page .col-main {
  float: right;
  width: 768px;
}
.my-account-page .col-main h1.bordered {
  text-transform: none;
  font-size: 22px;
  line-height: 1;
  padding-bottom: 5px;
}
.my-account-page .col-main p {
  font-size: 14px;
}
.my-account-page .col-main p.field-wrapper-label {
  margin-bottom: 7px;
}
.my-account-page .col-main .form-list p {
  margin-bottom: 7px;
}
.my-account-page .col-main .title-container {
  position: relative;
}
.my-account-page .col-main .title-container .title-link {
  position: absolute;
  right: 0;
  top: 6px;
}
.my-account-page .col-main .title-container .title-link a + a {
  margin-left: 15px;
}
.my-account-page .col-main .buttons-set .cancel {
  margin-left: 20px;
}
.my-account-page .col-main .data-table {
  font-size: 14px;
}
.my-account-page .col-main .data-table th {
  border: none;
  padding: 5px 0;
}
.my-account-page .col-main .data-table tbody td {
  border-bottom: none;
}
.account-dashboard .welcome {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.account-dashboard .column-set-2 {
  margin-top: 30px;
}
.account-dashboard .column-set-2:before,
.account-dashboard .column-set-2:after {
  content: " ";
  display: table;
}
.account-dashboard .column-set-2:after {
  clear: both;
}
.account-dashboard .column-set-2:before,
.account-dashboard .column-set-2:after {
  content: " ";
  display: table;
}
.account-dashboard .column-set-2:after {
  clear: both;
}
.account-dashboard .column-set-2 .col {
  width: 300px;
  margin-left: 100px;
}
.account-dashboard .column-set-2 .col:first-child {
  margin-left: 0;
}
.account-dashboard .content-block {
  margin-bottom: 35px;
}
.account-dashboard .content-block h4 {
  color: #34715b;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
  font-size: 16px;
}
.account-dashboard .content-block a {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.profile-page .info {
  margin-bottom: 25px;
}
.profile-page .change-password,
.profile-page .change-email {
  margin-bottom: 25px;
}
.profile-page .change-password .inner,
.profile-page .change-email .inner {
  display: none;
}
.profile-page .change-password .inner.show,
.profile-page .change-email .inner.show {
  display: block;
  margin-top: 15px;
}
.profile-page .change-password .controls label,
.profile-page .change-email .controls label {
  cursor: pointer;
  color: #3498db;
  font-size: 14px;
}
.profile-page .change-password .custom-styled-checkbox,
.profile-page .change-email .custom-styled-checkbox {
  margin-right: 10px;
}
.my-account-page .data-table .info-block {
  font-size: 14px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}
.my-account-page .data-table .links li {
  display: inline-block;
  margin-left: 14px;
}
.my-account-page .data-table .links li:first-child {
  margin-left: 0;
}
.my-account-page .data-table .info {
  width: 40%;
}
.my-account-page .data-table .actions {
  padding-right: 0;
}
.address-book-edit .form-list li.half .control-label {
  margin: 0;
}
.order-history .col-main h1.bordered {
  margin-bottom: 0;
}
.order-history .col-main .paginationBar {
  margin-bottom: 25px;
}
.order-history .col-main .paginationBar.bottom {
  border-top: solid 1px #b3b3b3;
  margin-top: 20px;
}
.order-history .col-main .data-table thead th {
  padding: 5px 0 15px;
}
.order-history .col-main .data-table tbody td {
  padding: 5px 10px 0 0;
}
.order-detail .step-summary {
  margin-top: 17px;
}
.order-detail .step-summary h4 {
  color: #4e4e4e;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
}
.order-detail .order-meta {
  margin-top: 17px;
}
.order-detail .top-section .summary-item {
  float: left;
  margin-top: 8px;
}
.order-detail .top-section .reorder {
  float: right;
  margin-top: 18px;
}
.order-detail .summary-item {
  margin-top: 15px;
}
.order-detail .order-items {
  margin-bottom: 5px;
}
.order-detail .ac-header {
  display: none;
}
.order-detail .col-main .data-table th {
  color: #34715b;
  border-top: solid 1px #b3b3b3;
  padding: 18px 15px 18px 0;
}
.order-detail .col-main .data-table td {
  border-top: solid 1px #b3b3b3;
}
.order-detail .col-main .data-table .status-info {
  font-size: 12px;
}
.order-detail .order-footer .col-l {
  float: left;
}
.order-detail .order-footer .col-r {
  float: right;
  width: 252px;
  border-top: solid 1px #b3b3b3;
  margin-top: 18px;
}
.order-detail .order-footer .buttons-set .button {
  float: right;
}
.payment-details .billing-address .flash-msg {
  margin-bottom: 15px;
}
.my-downloads .paginationBar.top,
.my-courses .paginationBar.top {
  border-top: solid 1px #b3b3b3;
}
.my-downloads .data-table tbody tr,
.my-courses .data-table tbody tr {
  border-top: solid 1px #b3b3b3;
}
.my-downloads .data-table tbody td,
.my-courses .data-table tbody td {
  padding-top: 30px;
}
.my-downloads .data-table tbody tr:first-child,
.my-courses .data-table tbody tr:first-child {
  border-top: none;
}
.my-downloads .data-table tbody tr:first-child td,
.my-courses .data-table tbody tr:first-child td {
  padding-top: 15px;
}
.my-downloads .data-table tbody .product-summary,
.my-courses .data-table tbody .product-summary {
  width: 175px;
}
.my-downloads .data-table p,
.my-courses .data-table p {
  margin-bottom: 5px;
}
.my-downloads .data-table p.note,
.my-courses .data-table p.note {
  font-size: 12px;
}
.my-downloads .data-table .product-image,
.my-courses .data-table .product-image {
  width: 70px;
  margin: 0 20px 0 0;
  float: left;
}
.my-downloads .data-table .product-summary,
.my-courses .data-table .product-summary {
  float: left;
}
.my-downloads .data-table .product-summary p.title,
.my-courses .data-table .product-summary p.title {
  margin-top: 0;
}
.my-downloads .flash-msg.positive > div,
.my-courses .flash-msg.positive > div {
  padding: 18px 11px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.my-downloads .paginationBar.top {
  border-top: none;
}
.my-courses .data-table tbody .product-summary {
  width: 155px;
}
.page-newsSignUpPage .col-main p {
  line-height: 22px;
  margin-bottom: 13px;
}
.page-newsSignUpPage .subscriptions p {
  font-size: 14px;
}
.page-newsSignUpPage .snooze-email {
  padding: 11px 0;
  margin-bottom: 13px;
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
}
.page-newsSignUpPage .snooze-email div.snooze-checkbox {
  padding-top: 10px;
  font-size: 14px;
  float: left;
}
.page-newsSignUpPage .snooze-email div.date-range {
  float: right;
  font-size: 13px;
}
.page-newsSignUpPage .snooze-email div.date-range > div,
.page-newsSignUpPage .snooze-email div.date-range > span {
  position: relative;
  float: left;
}
.page-newsSignUpPage .snooze-email div.date-range > div.pauseStartDate,
.page-newsSignUpPage .snooze-email div.date-range > span.pauseStartDate {
  margin-right: 10px;
}
.page-newsSignUpPage .snooze-email div.date-range > div.pauseEndDate,
.page-newsSignUpPage .snooze-email div.date-range > span.pauseEndDate {
  margin-left: 10px;
}
.page-newsSignUpPage .snooze-email div.date-range > div .datepicker,
.page-newsSignUpPage .snooze-email div.date-range > span .datepicker {
  cursor: pointer;
}
.page-newsSignUpPage .snooze-email div.date-range > span {
  line-height: 36px;
}
.page-newsSignUpPage .snooze-email div.date-range input {
  width: 157px;
}
.page-newsSignUpPage .email-preferences {
  padding-bottom: 10px;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 17px;
}
.page-newsSignUpPage .email-preferences h3 {
  margin-bottom: 19px;
  float: left;
}
.page-newsSignUpPage .email-preferences a {
  margin-top: 6px;
  float: right;
}
.page-newsSignUpPage .email-preferences a.select-all {
  margin-right: 10px;
}
.page-newsSignUpPage .email-preferences .email-preferences-list li {
  width: 240px;
  margin: 0 21px 10px 0;
  float: left;
}
.page-newsSignUpPage .email-preferences .email-preferences-list li.even {
  clear: left;
}
.page-newsSignUpPage .email-preferences .email-subscription {
  margin-bottom: 10px;
}
.page-newsSignUpPage .mardel-store h3 {
  margin-bottom: 4px;
}
.page-newsSignUpPage .mardel-store > p {
  width: 516px;
  line-height: 22px;
  margin-bottom: 10px;
}
.page-newsSignUpPage .mardel-store .form-list li {
  margin-bottom: 3px;
}
.page-newsSignUpPage .mardel-store .form-list li p {
  margin-bottom: 4px;
}
.page-newsSignUpPage .mardel-store .form-list li .custom-styled-select > span {
  padding-left: 9px;
}
.page-newsSignUpPage .mardel-store .custom-styled-select {
  width: 218px;
}
.page-newsSignUpPage .mardel-store > div {
  font-size: 14px;
  line-height: 22px;
  padding-left: 9px;
}
.page-newsSignUpPage .buttons-set {
  margin-top: 36px;
  margin-right: 1px;
}
.page-newsSignUpPage .buttons-set button {
  width: 119px;
  height: 38px;
}
.page-updatePassword h2 {
  margin-bottom: 10px;
}
.page-updatePassword .form-list {
  width: 100%;
}
.page-updatePassword .help-inline {
  margin-top: 10px;
  color: #ff4d4d;
}
/*--------------------------------------------------------------
    User Account
--------------------------------------------------------------*/
.wishlist .col-main .title-container .title-link.print {
  right: 132px;
}
.wishlist #cartItems .title {
  width: 100%;
  margin-bottom: 9px;
}
.wishlist #cartItems .title h2 {
  font-size: 21px;
  line-height: 1;
  text-transform: capitalize;
  display: inline;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.wishlist #cartItems .title .link-header {
  line-height: 21px;
  float: right;
}
.wishlist #cartItems .title .link-header .print {
  margin-right: 15px;
}
.wishlist #cartItems .data-table th {
  padding-bottom: 15px;
  border-bottom: none;
}
.wishlist #cartItems .data-table tbody tr {
  border-bottom: 1px solid #b3b3b3;
}
.wishlist #cartItems .data-table tbody tr:first-child td {
  padding-top: 0;
}

.wishlist #cartItems div.price span {
  display: inline-block;
  margin: 0;
  height: 14px;
  line-height: 14px;
}
.wishlist #cartItems div.price .sale-badge + .amount {
  color: #4e4e4e;
  margin-left: 6px;
  display: inline;
}
.wishlist #cartItems div.price .amount + .regular,
.wishlist #cartItems div.price .savings {
  display: none;
}
.wishlist #cartItems .details p {
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 10px;
}
.wishlist #cartItems .details p.title {
  margin-top: 15px;
  margin-bottom: 8px;
}
.wishlist #cartItems .details p.sku {
  font-size: 10px;
  line-height: 10px;
}
.wishlist #cartItems .details .title + .notice {
  margin-top: -2px;
  margin-bottom: 8px;
}
.wishlist #cartItems .details .title + .notice span {
  margin-right: 11px;
}
.wishlist #cartItems .details .product-attributes li {
  font-size: 12px;
  margin-bottom: 10px;
}
.wishlist #cartItems .details .product-attributes + .notice {
  margin-top: 15px;
  margin-bottom: 0;
}
.wishlist #cartItems td.quantity .update,
.wishlist #cartItems td.quantity button {
  float: left;
}
.wishlist #cartItems td.quantity .update input.qty,
.wishlist #cartItems td.quantity button input.qty {
  height: 40px;
}
.wishlist #cartItems td.quantity button.link {
  display: block;
  color: #3498db;
  font-size: 12px;
  float: none;
  margin: 10px 0 0 -3px;
  padding: 0;
  height: auto;
  width: auto;
  background: none;
  text-transform: capitalize;
}
.wishlist #cartItems .submitRemoveProduct {
  margin-top: 15px;
}
.wishlist p.remove-all {
  text-align: right;
  margin: 20px 0 40px 0;
  font-size: 12px;
}
.wishlist .buttons-container a {
  float: left;
  height: 40px;
  line-height: 19px;
}
.wishlist .buttons-container a.save {
  float: right;
}
.wishlist .buttons-container .move-all {
  float: right;
}
.wishlist .buttons-container .move-all {
  margin-left: 20px;
}
#wishlist-modal .inner h2 {
  font-size: 24px;
  padding-bottom: 6px;
}
#wishlist-modal .inner p {
  font-size: 14px;
  line-height: 22px;
}
#wishlist-modal .inner .input-text {
  margin-top: 17px;
  margin-bottom: 40px;
}
#wishlist-modal .inner #wishlist-email-addresses {
  width: 100%;
  height: 100px;
  margin: 0 0 0 0;
  resize: none;
}
/*--------------------------------------------------------------
    CMS General
--------------------------------------------------------------*/
.cms .section {
  margin-top: 35px;
}
.cms .section:first-child {
  margin-top: 10px;
}
.cms h1.bordered {
  border-bottom: solid 1px #b3b3b3;
  font-size: 21px;
  padding-bottom: 2px;
  margin-bottom: 15px;
  text-transform: none;
  line-height: 25px;
}
.cms h1.bordered.large {
  font-size: 24px;
  line-height: 30px;
}
.cms p {
  font-size: 14px;
  margin-bottom: 16px;
}
.cms .spiffs h2,
.cms .copy h2 {
  border-bottom: solid 1px #b3b3b3;
  margin-bottom: 16px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.cms .spiffs p,
.cms .copy p {
  line-height: 24px;
}
.cms .spiffs h1 + h2 {
  margin-top: 35px;
}
.cms .spiffs + .copy h2 {
  margin-top: 15px;
}
.cms .copy-bottom {
  clear: both;
}
.cms .copy table p {
  margin-bottom: 0;
}
.cms .cms-paragraph-image {
  margin-top: 25px;
}
.cms .cms-paragraph-image:before,
.cms .cms-paragraph-image:after {
  content: " ";
  display: table;
}
.cms .cms-paragraph-image:after {
  clear: both;
}
.cms .cms-paragraph-image:before,
.cms .cms-paragraph-image:after {
  content: " ";
  display: table;
}
.cms .cms-paragraph-image:after {
  clear: both;
}
.cms .cms-paragraph-image .cms-image-LEFT {
  float: left;
  width: 150px;
  margin: 40px 65px 0 0;
}
.cms .cms-paragraph-image .cms-image-LEFT img {
  max-width: 100%;
}
.cms .cms-paragraph-image .cms-content {
  float: right;
  width: 552px;
}
.cms .cmsimage .float-LEFT {
  float: left;
  margin-right: 50px;
}
.cms .cmsimage .float-RIGHT {
  border: solid 1px #b3b3b3;
  padding: 10px;
  float: right;
  margin: 45px 0 0 20px;
}
.cms ul.spread li {
  margin-bottom: 20px;
}
.cms .table-list {
  width: 100%;
  font-size: 14px;
}
.cms .table-list th,
.cms .table-list td {
  text-align: left;
  padding: 4px 0;
}
.cms .table-list th {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #34715b;
}
.cms h3 a {
  float: right;
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  margin-top: 3px;
}
.cms h3.section-header {
  margin-top: 20px;
  margin-bottom: 12px;
}
.cms .title-container {
  position: relative;
}
.cms .title-container ul.links {
  position: absolute;
  right: 0;
  top: 10px;
  margin-top: 0;
}
.cms .title-container ul.links li {
  display: inline-block;
  border-left: 1px solid #b3b3b3;
  margin-left: 7px;
  padding-left: 10px;
  font-size: 12px;
  line-height: 12px;
}
.cms .title-container ul.links li:first-child {
  border-left: none;
}
.cms h3.subtitle {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
/*--------------------------------------------------------------
    Teacher Assessment
--------------------------------------------------------------*/
.assessment h1 {
  text-transform: none;
}
.assessment p.green-copy {
  color: #34715b;
}
.assessment .step-nav {
  border-top: solid 1px #b3b3b3;
  margin: 25px 0 30px;
}
.assessment .step-nav li {
  margin-top: 17px;
}
.assessment .step-nav .active {
  cursor: default;
}
.assessment .step-nav .complete a {
  color: #4e4e4e;
}
.assessment .step-nav .complete.active a {
  color: #34715b;
}
.assessment .question-set {
  display: none;
}
.assessment .question-set.active {
  display: block;
}
.assessment .question-set h2 {
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.assessment .question-set h2 span {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.assessment ol.form-list {
  width: 100%;
}
.assessment ol.form-list li {
  list-style-type: decimal;
  position: relative;
  margin: 0 0 23px 15px;
}
.assessment li.control {
  color: #34715b;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
}
.assessment li.control > p {
  font-size: 14px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 12px;
}
.assessment li.control > div {
  display: inline-block;
  width: 1030px;
  margin: 0 0 9px 1px;
  clear: both;
}
.assessment li.control .custom-styled-radio {
  vertical-align: top;
}
.assessment li.control label {
  font-family: 'Gotham SSm 4r', 'Gotham SSm A', 'Gotham SSm B', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #4e4e4e;
  display: inline-block;
}
.assessment li.error label {
  color: #ff4d4d;
  font-size: 14px;
}
.assessment li.error label.error {
  margin-top: 0;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.assessment .buttons-set a + button,
.assessment .buttons-set a + a.button {
  margin-left: 27px;
}
.assessment .buttons-set a.button {
  display: inline-block;
  height: 41px;
  line-height: 20px;
  vertical-align: top;
}
.assessment-results h3 {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  border-bottom: solid 1px #b3b3b3;
  padding-bottom: 10px;
}
.assessment-results .method-result {
  margin: 20px 0 35px;
}
.assessment-results .method-result h3 {
  margin-bottom: 18px;
}
.assessment-results .col {
  width: 530px;
  float: left;
  margin: 10px 0 0 20px;
}
.assessment-results .col:first-child {
  margin-left: 0;
}
.assessment-results .col .section {
  margin-top: 0;
}
.assessment-results .attributes {
  margin-top: 21px;
}
.assessment-results .attributes td {
  padding-right: 23px;
  text-align: right;
}
.assessment-results .accordion-list {
  border-top: none;
}
.assessment-results .accordion-list .ac-header {
  color: #3498db;
}
.assessment-results .accordion-list .ac-content p {
  color: #4e4e4e;
}
.assessment-results .where-to {
  margin-top: 40px;
}
.assessment-results .where-to h3 {
  margin-bottom: 18px;
}
.assessment-results .buttons-set {
  margin-top: 38px;
}
.assessment-results .buttons-set a.button + a,
.assessment-results .buttons-set a.button + a + a {
  margin-left: 11px;
}
/*--------------------------------------------------------------
    Bible Finder / Curriculum Explorer
--------------------------------------------------------------*/
.facets h2 {
  margin-top: 40px;
}
.facets .facet-group {
  border-bottom: solid 1px #b3b3b3;
  margin-bottom: 20px;
}
.facets .facet-heading {
  margin-bottom: 16px;
}
.facets .facet-heading h3,
.facets .facet-heading .modal-trigger {
  float: left;
}
.facets .facet-heading .modal-trigger {
  margin-left: 10px;
}
.facets .facet-heading input {
  margin-left: 0;
}
.facets .facet-heading label {
  font-size: 12px;
}
.facets .facet-heading label span {
  vertical-align: text-top;
}
.facets .buttons-set-top {
  margin-bottom: 22px;
}
.facets .buttons-set-top + .flash-msg.show {
  margin-bottom: 22px;
}
.facets .modal-content {
  display: none;
}
.facets .trigger {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -484px 0;
  text-indent: -9999px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .facets .trigger {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.facets .facet-image {
  border: solid 1px #b3b3b3;
  width: 130px;
  overflow: hidden;
  position: relative;
}
.facets .facet-image img {
  display: block;
  -webkit-transition: left 100ms ease-out;
  -moz-transition: left 100ms ease-out;
  -o-transition: left 100ms ease-out;
  transition: left 100ms ease-out;
}
.facets .facet-item {
  position: relative;
  float: left;
  margin-left: 25px;
  margin-bottom: 16px;
  width: 130px;
  cursor: pointer;
}
.facets .facet-item:first-child,
.facets .facet-item.first {
  margin-left: 0;
}
.facets .facet-item:hover .facet-image,
.facets .facet-item.selected:not(.disabled) .facet-image {
  border-color: #3498db;
}
.facets .facet-item .facet-image {
  -webkit-transition: opacity 100ms ease-in;
  -moz-transition: opacity 100ms ease-in;
  -o-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}
.facets .facet-item p.facet-name {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #3498db;
  margin-top: 6px;
  margin-bottom: 0;
  -webkit-transition: opacity 100ms ease-in;
  -moz-transition: opacity 100ms ease-in;
  -o-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}
.facets .facet-item img.selected-state {
  position: absolute;
  left: -130px;
}
.facets .facet-item .working {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
  opacity: 0.7;
  background: url("/_ui/desktop/theme-mardel/images/loader-large.gif") no-repeat center center;
}
.facets .facet-item.selected:not(.disabled) img.selected-state {
  left: 0;
}
.facets .facet-item.disabled {
  cursor: default;
}
.facets .facet-item.disabled .facet-image {
  opacity: 0.1;
}
.facets .facet-item.disabled .facet-name {
  opacity: 0.1;
}
.facets .flash-msg {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 250ms ease-in;
  -moz-transition: height 250ms ease-in;
  -o-transition: height 250ms ease-in;
  transition: height 250ms ease-in;
}
.facets .flash-msg.show {
  height: 34px;
}
.facets .flash-msg > div {
  padding: 10px 15px;
  width: 420px;
  text-align: center;
}
#modal div.facet-video {
  max-width: 640px;
}
#modal div.facet-video h3 {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  border-bottom: solid 1px #b3b3b3;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.moby .facet-modal {
  max-width: 550px !important;
}
.moby .facet-modal h2 {
  border-bottom: 1px solid #b3b3b3;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.moby .facet-modal li {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 32px;
}
/*--------------------------------------------------------------
    Homeschool Resource Center
--------------------------------------------------------------*/
.page-resourceCenter h2.bordered,
.page-articles h2.bordered {
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.page-resourceCenter h2.bordered a,
.page-articles h2.bordered a {
  float: right;
  font-size: 12px;
  line-height: 22px;
}
.page-resourceCenter .top,
.page-articles .top {
  margin-bottom: 70px;
}
.page-resourceCenter .top .cms-paragraph-image,
.page-articles .top .cms-paragraph-image {
  margin-top: 0;
}
.page-resourceCenter .top .cms-paragraph-image .cms-image-LEFT,
.page-articles .top .cms-paragraph-image .cms-image-LEFT {
  width: 165px;
  margin: 5px 63px 0 48px;
}
.page-resourceCenter .top .cms-paragraph-image .cms-image-LEFT img,
.page-articles .top .cms-paragraph-image .cms-image-LEFT img {
  width: 100%;
  height: auto;
  display: block;
}
.page-resourceCenter .top .cms-image-LEFT,
.page-articles .top .cms-image-LEFT {
  margin: 0;
  width: auto;
}
.page-resourceCenter .top .cms-content,
.page-articles .top .cms-content {
  width: 801px;
}
.page-resourceCenter .top .cms-content p,
.page-articles .top .cms-content p {
  font-size: 14px;
  line-height: 24px;
}
.page-resourceCenter .tools,
.page-articles .tools {
  margin-bottom: 43px;
}
.page-resourceCenter .tools > div,
.page-articles .tools > div {
  float: left;
  width: 252px;
  margin-left: 24px;
  font-size: 14px;
  line-height: 22px;
}
.page-resourceCenter .tools > div:first-child,
.page-articles .tools > div:first-child {
  margin-left: 0;
}
.page-resourceCenter .tools > div img,
.page-articles .tools > div img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 5px;
}
.page-resourceCenter .tools > div h3,
.page-articles .tools > div h3 {
  color: #3498db;
  margin-bottom: 0;
}
.page-resourceCenter .tools > div p,
.page-articles .tools > div p {
  font-size: 14px;
  line-height: 22px;
}
.page-resourceCenter .social,
.page-articles .social {
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 18px;
  margin-bottom: 66px;
}
.page-resourceCenter .social ul,
.page-articles .social ul {
  width: 896px;
  margin: 0 auto 0;
}
.page-resourceCenter .social ul:before,
.page-articles .social ul:before,
.page-resourceCenter .social ul:after,
.page-articles .social ul:after {
  content: " ";
  display: table;
}
.page-resourceCenter .social ul:after,
.page-articles .social ul:after {
  clear: both;
}
.page-resourceCenter .social ul:before,
.page-articles .social ul:before,
.page-resourceCenter .social ul:after,
.page-articles .social ul:after {
  content: " ";
  display: table;
}
.page-resourceCenter .social ul:after,
.page-articles .social ul:after {
  clear: both;
}
.page-resourceCenter .social ul li,
.page-articles .social ul li {
  float: left;
  width: 160px;
  margin-left: 24px;
}
.page-resourceCenter .social ul li:first-child,
.page-articles .social ul li:first-child {
  margin-left: 0;
}
.page-resourceCenter .community > div,
.page-articles .community > div {
  border-top: 1px solid #b3b3b3;
  padding-top: 20px;
  margin-top: 20px;
}
.page-resourceCenter .community > div:first-child,
.page-articles .community > div:first-child {
  border-top: 0;
  margin-top: 20px;
  padding-top: 0;
}
.page-resourceCenter .community > div > div,
.page-articles .community > div > div {
  text-align: left;
  float: left;
  width: 552px;
}
.page-resourceCenter .community > div > div h3,
.page-articles .community > div > div h3 {
  margin-bottom: 3px;
}
.page-resourceCenter .community > div > div h3 a,
.page-articles .community > div > div h3 a {
  float: none;
  font-size: 14px;
  color: #34715b;
  display: block;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 0;
}
.page-resourceCenter .community > div > div .authors,
.page-articles .community > div > div .authors {
  font-size: 12px;
  margin-bottom: 19px;
  line-height: 18px;
}
.page-resourceCenter .community > div > div p,
.page-articles .community > div > div p {
  line-height: 24px;
}
.page-resourceCenter .community > div > div .readmore,
.page-articles .community > div > div .readmore {
  font-size: 14px;
  line-height: 18px;
}
.page-resourceCenter .community > div > div .readmore:after,
.page-articles .community > div > div .readmore:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-left: 3px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -120px -52px;
  position: relative;
  top: 1px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .page-resourceCenter .community > div > div .readmore:after,
  .page-articles .community > div > div .readmore:after {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.page-resourceCenter .community img,
.page-articles .community img {
  display: block;
  float: left;
  width: 460px;
  border: 1px solid #b3b3b3;
  padding: 10px;
  margin-right: 68px;
}
.page-articles .content p {
  font-size: 14px;
  line-height: 22px;
}
.page-articles .community > div:first-child {
  border-top: 1px solid #b3b3b3;
  padding-top: 20px;
  margin-top: 20px;
}
.pageType-ArticleDetailPage .span-18 {
  float: left;
  width: 767px;
}
.pageType-ArticleDetailPage .span-18 h1 {
  margin-bottom: 13px;
}
.pageType-ArticleDetailPage .span-18 h1.bordered {
  padding-bottom: 5px;
}
.pageType-ArticleDetailPage .span-18 h1 span {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #4e4e4e;
}
.pageType-ArticleDetailPage .span-18 .share {
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid #b3b3b3;
}
.pageType-ArticleDetailPage .span-18 .share > span {
  float: left;
  font-size: 13px;
  line-height: 34px;
  margin-right: 33px;
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.pageType-ArticleDetailPage .span-18 .share li {
  float: left;
  margin-right: 7px;
}
.pageType-ArticleDetailPage .span-18 .share .at-svc-compact {
  display: none;
}
.pageType-ArticleDetailPage .span-18 .top .cmsimage {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
.pageType-ArticleDetailPage .span-18 .top .cmsimage .float-LEFT {
  width: 100%;
  float: inherit;
  border: 1px solid #b3b3b3;
  padding: 9px;
  margin-right: 0;
}
.pageType-ArticleDetailPage .span-18 .top img {
  width: 100%;
}
.pageType-ArticleDetailPage .span-18 .top .content,
.pageType-ArticleDetailPage .span-18 .top .content p {
  font-size: 14px;
  line-height: 22px;
}
.pageType-ArticleDetailPage .span-18 .top ul {
  list-style: inside none disc;
}
.pageType-ArticleDetailPage .span-6 {
  float: right;
  width: 252px;
}
.pageType-ArticleDetailPage .span-6 h2 {
  font-size: 14px;
  line-height: 18px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.pageType-ArticleDetailPage .span-6 img {
  display: block;
  width: 100%;
  padding: 9px;
  border: 1px solid #b3b3b3;
  margin-bottom: 15px;
}
.pageType-ArticleDetailPage .span-6 > div {
  margin-bottom: 40px;
}
.pageType-ArticleDetailPage .span-6 > div p,
.pageType-ArticleDetailPage .span-6 > div h3,
.pageType-ArticleDetailPage .span-6 > div a {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
}
.pageType-ArticleDetailPage .span-6 > div .readmore:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-left: 3px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -120px -52px;
  position: relative;
  top: 1px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .pageType-ArticleDetailPage .span-6 > div .readmore:after {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.pageType-ArticleDetailPage .span-6 .article {
  margin-bottom: 30px;
}
.pageType-ArticleDetailPage .span-6 .resource-links a {
  display: block;
}
/*--------------------------------------------------------------
    CMS Pages
--------------------------------------------------------------*/
.contact-page:before,
.contact-page:after {
  content: " ";
  display: table;
}
.contact-page:after {
  clear: both;
}
.contact-page:before,
.contact-page:after {
  content: " ";
  display: table;
}
.contact-page:after {
  clear: both;
}
.contact-page .col {
  width: 372px;
}
.contact-page .col .contact-form {
  margin-top: 20px;
}
.contact-page .col .section-header {
  margin-bottom: 15px;
}
.contact-page .contact-top {
  margin-bottom: 30px;
}
.contact-page ul.form-list {
  width: 100% !important;
}
.contact-page ul.form-list .input-text input {
  width: 100%;
}
#store-location-list address {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 30px;
}
#store-location-list address span {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
#store-location-list .state {
  font-size: 14px;
  margin-bottom: 20px;
}
#store-location-list .state:before,
#store-location-list .state:after {
  content: " ";
  display: table;
}
#store-location-list .state:after {
  clear: both;
}
#store-location-list .state:before,
#store-location-list .state:after {
  content: " ";
  display: table;
}
#store-location-list .state:after {
  clear: both;
}
#store-location-list .state span {
  display: block;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
}
#store-location-list .state .f-left {
  width: 185px;
}
#store-location-list .state .f-left {
  width: 185px;
}
#store-location-list .state ul li {
  margin-bottom: 10px;
}
.store-locator h1.bordered {
  text-transform: none;
}
.store-locator .search-form {
  margin-bottom: 20px;
}
.store-locator .search-form .mandatory {
  display: none;
}
.store-locator .search-form p {
  font-size: 14px;
  margin-bottom: 5px;
}
.store-locator .search-form .form-inner {
  border-top: 1px solid #b3b3b3;
  padding-top: 17px;
  margin-top: 15px;
}
.store-locator .search-form .form-inner:before,
.store-locator .search-form .form-inner:after {
  content: " ";
  display: table;
}
.store-locator .search-form .form-inner:after {
  clear: both;
}
.store-locator .search-form .form-inner:before,
.store-locator .search-form .form-inner:after {
  content: " ";
  display: table;
}
.store-locator .search-form .form-inner:after {
  clear: both;
}
.store-locator .search-form .search-value input {
  width: 750px;
}
.store-locator .search-form .search-radius {
  margin-left: 20px;
}
.store-locator .search-form .search-radius .custom-styled-select {
  width: 150px;
}
.store-locator .search-form .search-radius .custom-styled-select .outer {
  padding: 11px 38px 10px 11px;
}
.store-locator .map-area:before,
.store-locator .map-area:after {
  content: " ";
  display: table;
}
.store-locator .map-area:after {
  clear: both;
}
.store-locator .map-area:before,
.store-locator .map-area:after {
  content: " ";
  display: table;
}
.store-locator .map-area:after {
  clear: both;
}
.store-locator .map-area .sidebar {
  float: left;
  width: 245px;
  height: 504px;
  background: #f9f9f9;
}
.store-locator .map-area .sidebar .results .location {
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 22px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.store-locator .map-area .sidebar .results .location h5 {
  color: #34715b;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.store-locator .map-area .sidebar .results .location:hover {
  background: #efefef;
}
.store-locator .map-area .sidebar .results .viewport {
  width: 228px;
  height: 504px;
}
.store-locator .map-area .map-wrapper {
  padding: 10px;
  border: 1px solid #b3b3b3;
}
.store-locator #map-canvas {
  width: 812px;
  height: 480px;
}
.store-locator .locations-events {
  margin-top: 50px;
}
.store-locator .locations-events .col {
  width: 49.07407407%;
}
.store-locator .locations-events table {
  font-size: 14px;
}
.store-locator .locations-events table th {
  border: none;
  padding: 10px 0;
}
.store-locator .locations-events table p {
  font-size: 14px;
}
.store-locator .locations-events table td {
  line-height: 1.5;
  border-bottom: none;
  border-top: 1px solid #b3b3b3;
  padding: 15px 15px 15px 0;
}
.store-locator .locations-events table tr:first-child td {
  border-top: none;
}
.store-locator-detail h1.bordered {
  text-transform: none;
}
.store-locator-detail .details {
  width: 50.92592593%;
  font-size: 14px;
  line-height: 1.5;
}
.store-locator-detail .details .col {
  width: 48%;
}
.store-locator-detail .details p {
  font-size: 14px;
}
.store-locator-detail .details .store {
  display: block;
}
.store-locator-detail .top:before,
.store-locator-detail .bottom:before,
.store-locator-detail .top:after,
.store-locator-detail .bottom:after {
  content: " ";
  display: table;
}
.store-locator-detail .top:after,
.store-locator-detail .bottom:after {
  clear: both;
}
.store-locator-detail .top:before,
.store-locator-detail .bottom:before,
.store-locator-detail .top:after,
.store-locator-detail .bottom:after {
  content: " ";
  display: table;
}
.store-locator-detail .top:after,
.store-locator-detail .bottom:after {
  clear: both;
}
.store-locator-detail .top {
  margin-bottom: 30px;
}
.store-locator-detail .detail-top {
  margin-bottom: 50px;
}
.store-locator-detail .map {
  width: 42.59259259%;
}
.store-locator-detail .map-wrapper {
  border: 1px solid #b3b3b3;
  padding: 10px;
  margin-bottom: 15px;
}
.store-locator-detail .directions-link {
  font-size: 14px;
}
.store-locator-detail #map-canvas {
  width: 438px;
  height: 248px;
}
.store-locator-detail .store-faq ul {
  margin-bottom: 15px;
}
.store-locator-detail .store-faq ul li {
  line-height: 18px;
  list-style-position: outside;
  list-style-type: disc;
  margin: 0 0 4px 11px;
}
.gm-style-iw {
  width: 100%;
  height: auto !important;
  min-height: 100px;
  overflow: hidden !important;
  padding: 10px;
}
.gm-style-iw > div {
  overflow: hidden !important;
}
.gm-style-iw address {
  line-height: 1.5;
}
.page-sitemap .title-container h1 {
  text-transform: capitalize;
  margin-bottom: 39px;
}
.page-sitemap .title-container h2 {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 6px;
  margin-bottom: 15px;
}
.page-sitemap ul li {
  list-style: none;
}
.page-sitemap ul.category-list > li {
  float: left;
  width: 252px;
  margin-left: 24px;
  padding-bottom: 27px;
}
.page-sitemap ul.category-list > li.first {
  margin-left: 0;
  clear: left;
}
.page-sitemap ul.category-list > li > span {
  display: block;
  padding-bottom: 4px;
  margin-bottom: 14px;
  border-bottom: 1px solid #b3b3b3;
}
.page-sitemap ul.category-list > li a {
  font-size: 14px;
  line-height: 22px;
}
.page-sitemap ul.category-list > li > ul > li ul {
  padding: 0 0 14px 12px;
}
.page-sitemap .title-container + ul {
  margin-bottom: 32px;
}
.page-sitemap .title-container + ul li {
  font-size: 14px;
  line-height: 22px;
}
.page-bibleTranslationGuide .header-container {
  position: relative;
}
.page-bibleTranslationGuide .header-container a {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.page-bibleTranslationGuide .header-container h1 {
  font-size: 24px;
  margin-bottom: 0;
  padding-bottom: 5px;
}
.page-bibleTranslationGuide .left-col {
  float: left;
  width: 154px;
  padding: 15px 10px 15px;
  margin-right: 6px;
  background-color: #f5f5f5;
}
.page-bibleTranslationGuide .left-col h2 {
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
}
.page-bibleTranslationGuide .left-col > p {
  margin-top: 9px;
  margin-bottom: 12px;
  font-size: 12px;
}
.page-bibleTranslationGuide .left-col div.continuum {
  margin: 6px 0 7px;
  position: relative;
}
.page-bibleTranslationGuide .left-col div.continuum:before,
.page-bibleTranslationGuide .left-col div.continuum:after {
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 16px;
  top: -6px;
  left: -1px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -80px -217px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .page-bibleTranslationGuide .left-col div.continuum:before,
  .page-bibleTranslationGuide .left-col div.continuum:after {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.page-bibleTranslationGuide .left-col div.continuum:after {
  top: inherit;
  bottom: -8px;
  background-position: -111px -217px;
}
.page-bibleTranslationGuide .left-col ul {
  position: relative;
  padding: 29px 0;
  height: 907px;
  margin-bottom: 6px;
}
.page-bibleTranslationGuide .left-col ul:before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  background-color: #b3b3b3;
  top: 0;
  bottom: 0;
  left: 8px;
}
.page-bibleTranslationGuide .left-col ul li {
  font-size: 14px;
  padding-left: 7px;
  margin: 0;
  list-style: none;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.page-bibleTranslationGuide .left-col ul li:before {
  position: relative;
  content: "";
  display: block;
  float: left;
  width: 23px;
  height: 7px;
  margin-right: 3px;
  margin-top: 6px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: 0 -217px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .page-bibleTranslationGuide .left-col ul li:before {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
.page-bibleTranslationGuide .right-col {
  float: right;
  width: 920px;
}
.page-bibleTranslationGuide .right-col thead {
  background-color: #f5f5f5;
  border-bottom: 1px solid #b3b3b3;
}
.page-bibleTranslationGuide .right-col thead th {
  text-align: left;
  padding: 20px 0 19px 0;
  font-size: 14px;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #34715b;
  width: 182px;
}
.page-bibleTranslationGuide .right-col thead th:first-child {
  padding-left: 9px;
  width: 192px;
}
.page-bibleTranslationGuide .right-col tr {
  border-bottom: 1px solid #b3b3b3;
}
.page-bibleTranslationGuide .right-col tr td {
  font-size: 12px;
  line-height: 18px;
  padding: 16px 16px 9px 0;
}
.page-bibleTranslationGuide .right-col tr td:first-child {
  padding-left: 10px;
}
.page-bibleTranslationGuide .right-col tr td .title {
  font-family: 'Gotham SSm 5r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.page-bibleTranslationGuide .right-col tr:nth-child(even) {
  background-color: #f5f5f5;
}
.page-stateRegulations h2 {
  font-size: 14px;
  line-height: inherit;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.page-stateRegulations .content h2 {
  margin-top: 9px;
}
.page-stateRegulations .middle:before,
.page-stateRegulations .middle:after {
  content: " ";
  display: table;
}
.page-stateRegulations .middle:after {
  clear: both;
}
.page-stateRegulations .middle:before,
.page-stateRegulations .middle:after {
  content: " ";
  display: table;
}
.page-stateRegulations .middle:after {
  clear: both;
}
.page-stateRegulations .middle .content {
  float: left;
  width: 552px;
}
.page-stateRegulations .middle .content p {
  font-size: 14px;
  line-height: 22px;
}
.page-stateRegulations .cms .cmsimage .float-RIGHT {
  margin-top: 4px;
  padding: 9px;
}
.page-stateRegulations .bottom h2 {
  margin-top: 6px;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #b3b3b3;
}
.page-stateRegulations table {
  width: 100%;
}
.page-stateRegulations table td {
  width: 276px;
  padding-left: 1px;
  font-size: 14px;
  line-height: 22px;
  padding-bottom: 15px;
}
.page-stateRegulations table td.last {
  width: 252px;
}
#ui-datepicker-div {
  padding: 15px 0;
  border: 1px solid #3498db;
  background-color: #ffffff;
}
#ui-datepicker-div .ui-datepicker-header {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #b3b3b3;
  margin: 0 9px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  text-align: center;
  font-family: 'Gotham SSm 7r', 'Gotham SSm A', 'Gotham SSm B', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #34715b;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all {
  position: absolute;
  left: 0;
  top: 2px;
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all span {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 10px;
  overflow: hidden;
  text-indent: -9000px;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -100px -30px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #ui-datepicker-div .ui-datepicker-header .ui-corner-all span {
    background-size: 500px 500px;
    background-image: url('../images/sprite2x.png');
  }
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-state-disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-state-disabled span {
  cursor: inherit;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  left: auto;
  right: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span {
  background-position: -106px -30px;
}
#ui-datepicker-div .ui-datepicker-calendar th {
  font-size: 14px;
  text-align: right;
  padding: 13px 9px 6px 9px;
  text-transform: uppercase;
}
#ui-datepicker-div .ui-datepicker-calendar th:first-child {
  width: 19px;
}
#ui-datepicker-div .ui-datepicker-calendar td {
  font-size: 14px;
  padding-bottom: 4px;
  padding-left: 9px;
}
#ui-datepicker-div .ui-datepicker-calendar td:first-child {
  padding-left: 2px;
}
#ui-datepicker-div .ui-datepicker-calendar td a,
#ui-datepicker-div .ui-datepicker-calendar td span {
  display: block;
  width: 29px;
  color: #4e4e4e;
  text-align: center;
  padding: 6px 0 6px 0;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-active,
#ui-datepicker-div .ui-datepicker-calendar td span.ui-state-active {
  border: 2px solid #34715b;
}
#ui-datepicker-div .ui-datepicker-calendar td span {
  color: #b3b3b3;
}
table.communities {
  width: 100%;
  margin-bottom: 50px;
  font-size: 12px;
}
table.communities a {
  font-weight: bold;
}
table.communities th {
  text-align: left;
  border-bottom: solid 1px #b3b3b3;
  font-weight: bold;
  padding-bottom: 10px;
  color: #34715b;
}
table.communities td {
  padding: 15px 30px 20px 0;
  line-height: 18px;
}
table.communities td:nth-of-type(4) {
  white-space: nowrap;
}
table.communities td:last-child {
  width: 50px;
  padding-right: 20px;
}
table.communities td:last-child a {
  width: 22px;
  height: 15px;
  background-image: url('../images/sprite.png');
  background-position: -79px -109px;
  display: block;
}
