@charset "UTF-8";
/* 
    Document   : structure
    Created on : May 16, 2013, 10:27:10 AM
    Author     : rafael
    Description:
    Version    : 1.0.6 RC
    Modified   : June 5th, 2019 16:20
    by: Rafael Vila

    Log:
    06-05-2019 Adding properties to class instead extending
    06-14-2016 Moving Rules to Main Page CSS - Cleaning
    07-17-2015 Creating SCSS file
*/
/*
General mixins and global variables to be included on scss files
*/
/* 
    Created on : Jul 29, 2016, 10:39:42 AM
    Author     : rafael

    Modified on: June 5th, 2019 16:20
    Modified by: Rafael Vila

    Logs:
    2009-06-05  Moved .avoid-breaks class to indexNav.scss
*/
.flex, .flex-column {
  position: relative;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-column {
  flex-direction: column;
}
.flex-item-grow {
  flex-grow: 1;
}
.flex-item-10 {
  flex-basis: 10%;
  max-width: 10%;
}
.flex-item-12 {
  flex-basis: 12.5%;
  max-width: 12.5%;
}
.flex-item-16 {
  flex-basis: 16.6%;
  max-width: 16.6%;
}
.flex-item-25 {
  flex-basis: 25%;
  max-width: 25%;
}
.flex-item-33 {
  flex-basis: 33.33%;
  max-width: 33.33%;
}
.flex-item-49 {
  flex-basis: 49.9%;
  max-width: 49.9%;
}
.flex-item-50 {
  flex-basis: 50%;
  max-width: 50%;
}
.flex-item-66 {
  flex-basis: 66.66%;
  max-width: 66.66%;
}
.flex-item-75 {
  flex-basis: 75%;
  max-width: 75%;
}
.flex-item-83 {
  flex-basis: 83.2%;
  max-width: 83.2%;
}
.flex-item-88 {
  flex-basis: 87.5%;
  max-width: 87.5%;
}
.flex-item-90 {
  flex-basis: 90%;
  max-width: 90%;
}
.flex-item-full, .flex-item-row {
  flex: 1 100%;
  width: 100%;
}
.flex.align-center, .align-center.flex-column {
  align-items: center;
}
.flex.align-center-content, .align-center-content.flex-column {
  align-content: center;
}
.flex.align-start, .align-start.flex-column {
  align-items: flex-start;
}
.flex.align-start-content, .align-start-content.flex-column {
  align-content: flex-start;
}
.flex.align-end, .align-end.flex-column {
  align-items: flex-end;
}
.flex.align-end-content, .align-end-content.flex-column {
  align-content: flex-end;
}
.flex.align-stretch, .align-stretch.flex-column {
  align-items: stretch;
}
.flex.align-stretch-content, .align-stretch-content.flex-column {
  align-content: stretch;
}
.flex.justify-center, .justify-center.flex-column {
  justify-items: center;
}
.flex.justify-center-content, .justify-center-content.flex-column {
  justify-content: center;
}
.flex.justify-start, .justify-start.flex-column {
  justify-items: flex-start;
}
.flex.justify-start-content, .justify-start-content.flex-column {
  justify-content: flex-start;
}
.flex.justify-end, .justify-end.flex-column {
  justify-items: flex-end;
}
.flex.justify-end-content, .justify-end-content.flex-column {
  justify-content: flex-end;
}
.flex.justify-stretch, .justify-stretch.flex-column {
  justify-items: stretch;
}
.flex.justify-stretch-content, .justify-stretch-content.flex-column {
  justify-content: stretch;
}
@media only screen and (max-width: 724px) {
  .flex:not(.ignore-screen), .flex-column:not(.ignore-screen) {
    flex-direction: column;
  }
}

[class^=flex-item].align-self-baseline {
  align-self: baseline;
}
[class^=flex-item].align-self-center {
  align-self: center;
}
[class^=flex-item].align-self-end {
  align-self: flex-end;
}
[class^=flex-item].align-self-start {
  align-self: flex-start;
}
[class^=flex-item].align-self-stretch {
  align-self: stretch;
}
[class^=flex-item].justify-self-baseline {
  justify-self: baseline;
}
[class^=flex-item].justify-self-center {
  justify-self: center;
}
[class^=flex-item].justify-self-end {
  justify-self: flex-end;
}
[class^=flex-item].justify-self-start {
  justify-self: flex-start;
}
[class^=flex-item].justify-self-stretch {
  justify-self: stretch;
}

@media only screen and (max-width: 724px) {
  .flex:not(.ignore-screen), .flex-column:not(.ignore-screen) {
    display: block;
  }
  .flex:not(.ignore-screen) > [class*=flex-item], .flex-column:not(.ignore-screen) > [class*=flex-item] {
    display: inline-block;
    max-width: 100%;
  }
}
@media only screen and (max-width: 565px) {
  .flex:not(.ignore-screen) > [class*=flex-item], .flex-column:not(.ignore-screen) > [class*=flex-item] {
    display: block;
    flex-basis: 100%;
    max-width: 100%;
  }
}
body {
  font-size: 12px;
}

* {
  font-family: "Segoe UI", "Helvetica", "Arial", "Roboto Sans", "Dejavu Sans", "Ubuntu Sans", Verdana, sans-serif;
  -moz-padding-start: 0;
  -webkit-padding-start: 0;
  font-weight: normal;
}

td:not(.metroTable) {
  vertical-align: middle;
}
td p {
  text-align: justify;
}

form[name=seatingOF] td, form[name=seatingOF] table {
  vertical-align: top;
}

sup {
  font-size: 0.65em;
  text-transform: capitalize;
}

sub {
  font-size: 0.65em;
  line-height: 0%;
  text-transform: capitalize;
}

abbr {
  cursor: pointer;
}

pre, code, eq {
  font-family: monospace;
}

a, p, h1, h2, h3, h4, h5, h6, span, div, article, section {
  text-shadow: none;
}

img {
  -webkit-interpolation-mode: -webkit-optimized-contrast;
  /*OLD VERSIONS OF CHROME*/
  -ms-interpolation-mode: bicubic;
  image-rendering: -moz-auto;
  image-rendering: -ms-auto;
  image-rendering: -o-auto;
  image-rendering: -webkit-auto;
  image-rendering: auto;
}

p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
  margin-top: 15px;
}

h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
  margin-top: 10px !important;
}

header, #header {
  z-index: 1;
}

.topSearchInput {
  display: inline-block;
  width: 80px;
  height: 30px;
  font-size: 18px;
  line-height: 25px;
  -webkit-appearance: none;
  outline-width: 0;
}

.searchBox {
  display: inline-block;
  padding: 0 5px;
  background: white;
  border-radius: 5px;
  margin-top: 15px;
  border-radius: 5px;
}

#links > #searchTop {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 50;
}
#links > #searchTop .searchBox {
  margin-top: 0;
}

p.subTitle {
  font-size: 120%;
  font-weight: 700;
  color: teal;
}

#searchPane {
  position: fixed;
  top: 57px;
  right: 0px;
  bottom: 0px;
  background: black;
}
#searchPane > div {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  bottom: 10px;
  padding-top: 80px;
  overflow: hidden;
  overflow-y: auto;
  border-radius: 5px;
  background: dimgray url("/images/structure/search_pane_top.png") left top repeat-x;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.5);
}

.framereciver.searchResult {
  background: dimgray url("/images/structure/search_pane_top.png") left top repeat-x;
}

#searchPane > div *, .framereciver.searchResult > * {
  color: #ececec;
}

#searchPane > div a, .framereciver.searchResult a {
  color: gold !important;
  text-decoration: none;
}

#searchPane > div a:hover, .framereciver.searchResult a:hover {
  color: white !important;
  text-shadow: 0 0 3px white, 0 0 5px palegoldenrod;
}

#searchPane > div h1, .framereciver.searchResult > h1, #searchPane > h2, .framereciver.searchResult > h2, #searchPane > div h3, .framereciver.searchResult > h3 {
  font-style: normal;
  text-shadow: 0 2px 3px black;
  color: goldenrod;
}

#searchPane > div > a + a, .framereciver.searchResult > div > a + a {
  margin-top: 10px;
}

.searchColumn {
  height: auto;
  /*    width: 30%;
      width: calc(33% - 40px);
      max-height: 90%;
      max-height: calc(100% - 80px);
      overflow: hidden; 
      overflow-y:auto; */
  padding: 20px;
}

.searchLink {
  font-size: 16px;
}

.homeMain, .homeSecondary {
  position: relative;
  width: 239px;
  display: inline-block;
  margin: 0 15px 40px;
  vertical-align: top;
  cursor: pointer;
}

.imageBox, .titleBox {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 239px;
  height: 346px;
  border-radius: 18px;
  /*margin: 3px;*/
  overflow: hidden;
}

.showTitle {
  transition-property: background-position;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.63, 1, 0.63, 1);
  -ms-transition-property: background-position;
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: cubic-bezier(0.63, 1, 0.63, 1);
  background-position: 0px 0px !important;
}

.hideTitle {
  transition-property: background-position;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.63, 1, 0.63, 1);
  -ms-transition-property: background-position;
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: cubic-bezier(0.63, 1, 0.63, 1);
  background-position: 40px 0px !important;
}

.homeMain .image {
  position: relative;
  width: 236px;
  height: 346px;
  border-radius: 20px;
  border: 3px white solid;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden !important;
}
.homeMain .mainIcon {
  position: relative;
  margin: -77.5px auto 0 auto;
  width: 155px;
  height: 158px;
}

.homeSecondary {
  height: 90px;
  position: relative;
  overflow: hidden;
  cursor: auto;
}
.homeSecondary span {
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
  display: block;
  text-align: right;
  text-transform: uppercase;
  font-size: 25px;
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 16px;
  text-shadow: 0 0 5px black, 0 0 8px black;
  cursor: pointer;
}
.homeSecondary:hover span {
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
  background-color: rgba(0, 0, 0, 0.7);
  color: yellowgreen;
}
.homeSecondary:hover span:before {
  content: "►";
  font-size: 12px;
  vertical-align: top;
}

#bottomNavLinks {
  position: relative;
  display: block;
  height: auto;
  margin: 0 0 10px;
}

.photoLinksRow {
  width: 100%;
  /*min-height: 300px;*/
  position: relative;
}

.photoLinks {
  transition-property: box-shadow, background;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  position: relative;
  display: inline-block;
  height: 100%;
  vertical-align: top;
  padding: 10px;
  max-width: 31%;
  max-width: calc(33% - 20px);
  margin: 0 auto 10px;
  cursor: pointer;
  box-shadow: none;
  background: none;
}
.photoLinks:hover {
  transition-property: box-shadow, background;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  background: lightgoldenrodyellow;
  box-shadow: 0 0 20px steelblue;
}

.photoLinksInfo {
  zoom: 90%;
  display: none;
  margin-top: 10px;
}

#bottomNavLinks a.searchLink {
  text-decoration: none;
  font-size: 150%;
  color: crimson;
}
#bottomNavLinks a.searchLink:hover {
  color: darkblue;
}
#bottomNavLinks .searchResultTitle {
  font-weight: normal;
  font-size: 150%;
  color: crimson;
  margin: 10px 0 5px 0 !important;
}

#mainHead {
  background: url("/images/structure/head_bg.png") top left repeat-x;
  position: fixed;
  height: 56px;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

#stealthLogo {
  position: relative;
  display: block;
  margin: 0 auto -158px;
  background: url("/images/structure/head_logo.png") top center no-repeat;
  width: 366px;
  height: 158px;
  z-index: 3;
}

#searchStealthLogo {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background: url("/images/structure/head_logo_search.png") top center no-repeat;
  background-size: contain;
}

#links {
  display: block;
  margin: 0 auto;
}

#mainBody {
  position: relative;
  max-width: 925px;
  margin: 180px auto 0;
  z-index: 2;
}

#contentBody h1:first-child {
  text-align: center;
}

#titleHead {
  color: white;
  min-height: 85px;
  font-size: 30px;
  font-family: "Impact", "Arial Black", "Helvetica Black", sans-serif;
  font-style: italic;
  padding: 0 10px;
  line-height: 60px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1em;
}

#mainFooter {
  border-top: 3px black solid;
  min-height: 40px;
  color: dimgray;
  text-align: center;
  line-height: 38px;
  z-index: 1;
}
#mainFooter a {
  color: dimgray;
  text-decoration: none;
}
#mainFooter a:hover {
  color: white;
  text-shadow: 0 0 2px gold, 0 0 5px white;
}

#menuContainer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 105px;
  background-color: darkred;
  border-bottom: 3px black solid;
  z-index: 20;
}

#menuLinksContainer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#menuLinksContainer a {
  display: inline-block;
  height: 100%;
  line-height: 50px;
  font-size: 16px;
  color: white;
  padding: 0 20px;
}
#menuLinksContainer a:hover {
  background: gold;
  color: black;
}

#linksContainer {
  display: inline-block;
  background: #ececec;
  color: dimgray;
  width: 500px;
  height: 351px;
  border-radius: 20px;
  z-index: 0;
  overflow: hidden;
}
#linksContainer * {
  text-align: left;
  font-weight: normal;
  color: dimgray;
}
#linksContainer h1, #linksContainer h2, #linksContainer h3, #linksContainer h4, #linksContainer h5, #linksContainer h6 {
  font-size: 25px;
  margin: 10px 10px 2px;
}
#linksContainer ul, #linksContainer ol {
  display: block;
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: 0;
  padding: 5px 0 5px 2em;
  text-indent: 0.1em;
  zoom: none;
  border-left: 2px rgba(0, 0, 0, 0.2) dotted;
}

.menuList ul, .menuList ol {
  display: block;
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: 0;
  padding: 5px 0 5px 2em;
  text-indent: 0.1em;
  zoom: none;
  border-left: 2px rgba(0, 0, 0, 0.2) dotted;
}

#linksContainer li, .menuList li {
  white-space: nowrap;
  padding: 2px;
}

#linksContainer li:hover, .menuList li:hover {
  background: rgba(255, 255, 255, 0.8);
}

#linksContainer ol ul li, .menuList ol ul li:before {
  list-style-type: none;
  content: "»  ";
}

#linksContainer h1:first-child {
  background: url("/images/structure/close_btn.png") right center no-repeat;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  cursor: pointer;
}

.menuList {
  display: block;
  border: 1px #ccc solid;
  border-radius: 5px;
  padding: 5px;
  margin: 0 1px 2px 2px;
}

.homeSecondary .menuList {
  border-left: none;
  border-right: none;
  border-color: gray;
  border-radius: 0;
  margin: 2px 0 0;
}
.homeSecondary .menuList a {
  color: black;
  text-decoration: none;
  font-size: 90%;
}
.homeSecondary .menuList a:hover {
  color: darkgoldenrod;
  text-decoration: underline;
}

#menuLinksContent {
  position: relative;
  overflow-x: auto;
  height: 280px;
  border: 1px rgba(0, 0, 0, 0) solid;
  border-radius: 5px;
  box-shadow: none;
  margin: 10px;
  z-index: 1;
}

.content-msrp {
  white-space: nowrap;
}

.content-footnote {
  font-size: smaller;
  color: #4c4c4c;
  padding: 10px 0;
}

.contentScroll {
  /*border: 10px rgba(0,0,0,0) solid;*/
  position: relative;
}
.contentScroll p {
  text-align: justify;
}

.scroll {
  position: absolute;
  float: right;
  background-color: black;
  right: 0;
  width: 8px;
  height: 5px;
  border-radius: 10px;
  cursor: pointer;
  min-height: 10px;
  z-index: 5;
}

#mainInformationContent {
  margin: 20px 0 20px !important;
}
#mainInformationContent p, #mainInformationContent font, #mainInformationContent h1, #mainInformationContent h2, #mainInformationContent h3, #mainInformationContent h4, #mainInformationContent h5, #mainInformationContent h6 {
  padding: 2px 0 5px;
  color: #222;
  font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 1em;
}
#mainInformationContent p, #mainInformationContent font {
  text-align: justify !important;
}
#mainInformationContent h1, #mainInformationContent h2, #mainInformationContent h3, #mainInformationContent h4, #mainInformationContent h5, #mainInformationContent h6 {
  font-size: 20px;
  font-weight: normal;
  color: steelblue;
}
#mainInformationContent img {
  border: 0;
  margin: 10px;
}

.menuItemListTitle {
  display: block;
  position: relative;
  position: relative;
}

.buttonArea {
  text-align: center !important;
  background: #f7f7f7;
  border: 1px #ececec solid;
  margin: 10px 0;
  padding: 10px 0;
}

#contentBody ._3DTitle {
  font-size: 3.5em;
  font-weight: 400;
  color: #ececec !important;
  text-shadow: -0.015em -0.015em 2px gray, 0.015em 0.015em 2px black !important;
}

.contentTitle {
  margin-bottom: 20px;
  font-size: 50px !important;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#contentReceiver .contentTitle {
  color: crimson;
}

.big_margin .contentTitle {
  margin-bottom: 20px;
  font-size: 30px !important;
  font-weight: 300;
}

#mainContentLeftColumn {
  /*display: inline-block;*/
  vertical-align: top;
  /*width: 33%;*/
  background: #ececec;
  min-height: 200px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#mainImageContainer img {
  display: block;
  max-width: 95%;
  max-height: 250px;
  margin: 5px auto;
}

#mainInformationContainer {
  display: inline-block;
  min-height: 200px;
  margin: 0;
  padding: 0;
}

#mainInformationOptions a {
  font-size: 14px;
  line-height: 15px;
  padding: 3px 5px;
  color: black;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
#mainInformationOptions a:hover {
  font-size: 14px;
  line-height: 15px;
  padding: 3px 5px;
  background: black;
  color: white;
}

#mainInformationContent {
  margin: 10px 10px 20px;
}

.see-more, .see-more-main {
  display: block;
  font-size: 20px;
  line-height: 26px;
  height: 26px;
  padding: 5px 0;
  margin-bottom: 2px;
  border: 1px #3c3c3c solid;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.see-more > .expand, .see-more-main > .expand {
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.see-more > .expand.btnClicked, .see-more-main > .expand.btnClicked {
  -moz-transform: rotate(-179deg);
  -ms-transform: rotate(-179deg);
  -o-transform: rotate(-179deg);
  -webkit-transform: rotate(-179deg);
  transform: rotate(-179deg);
}

.areaDivision, .areaDivision-main {
  -moz-transition: height 0.3s ease-in-out;
  -ms-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
  border-bottom: 3px rgba(0, 0, 0, 0.2) solid;
  margin-bottom: 2px;
  height: 0px;
  padding: 20px;
  display: none;
  overflow: hidden;
}
.areaDivision.expanded, .expanded.areaDivision-main, .areaDivision.forced, .forced.areaDivision-main {
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
  border-bottom: 3px rgba(0, 0, 0, 0.2) solid;
  margin-bottom: 2px;
  padding: 20px;
  display: block;
  overflow-y: auto;
  height: auto;
}
.areaDivision-main {
  height: 200px;
  overflow: hidden;
}

.docMainContainer {
  width: 33%;
  width: calc(33% - 5px);
  display: inline-block;
  vertical-align: top;
}

.contentDescription {
  font-size: 18px;
  margin: 0 0 40px;
}

.featuresBox {
  clear: both;
  max-height: 200px;
  overflow-x: auto;
}

.smallMsrp {
  font-size: small;
  margin-left: -35px;
}

.hoverGallery {
  transition-property: width, height, margin, z-index, box-shadow, border, background-color, background-size, background-position, background-size;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  -ms-transition-property: width, height, margin, z-index, box-shadow, border, background-color, background-size;
  -ms-transition-duration: 0.2s;
  -ms-transition-timing-function: linear;
  /*cubic-bezier(.63,1,.63,1)*/
  width: 120px;
  height: 120px;
  vertical-align: middle;
  position: relative;
  margin: 2px;
  display: inline-block;
  border: 1px gray solid;
  background-color: #ececec;
  overflow: hidden;
  z-index: 0;
  box-shadow: none;
  background-position: center center;
  background-size: 200%;
}
.hoverGallery:hover {
  transition-property: width, height, margin, z-index, box-shadow, border, background-color, background-size;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  -ms-transition-property: width, height, margin, z-index, box-shadow, border, background-color, background-size;
  -ms-transition-duration: 0.2s;
  -ms-transition-timing-function: linear;
  width: 300px;
  height: 200px;
  margin: -40px -90px;
  z-index: 2 !important;
  box-shadow: 0 10px 40px 3px rgba(0, 0, 0, 0.5);
  border: 3px white solid;
  background-color: goldenrod;
  background-size: 100%;
}

.hoverTitle {
  display: none;
  background-color: white;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  white-space: nowrap;
  color: black;
}

.vertical {
  display: block;
  margin: 2px auto;
}

.usflag {
  background-image: url("/images/structure/flags/us.svg");
}

.eurflag {
  background-image: url("/images/structure/flags/eur-union.svg");
}

.gbflag {
  background-image: url("/images/structure/flags/gb.svg");
}

.cadflag {
  background-image: url("/images/structure/flags/cad.svg");
}

.assymetric {
  background-size: cover !important;
}

.fullcover {
  background-size: cover !important;
  background-position: center center !important;
}

.hideLabel {
  background-size: 100% auto;
}

.frameLowTab {
  margin: 0 2px 10px;
  border-radius: 0 0 4px 4px;
  display: inline-block;
  padding: 2px 5px;
  background: goldenrod;
  color: black;
  font-size: 16px;
  line-height: 16px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-weight: 400;
}
.frameLowTab:hover {
  background: white;
  color: black;
}
.frameLowTab:active {
  background: black;
  color: goldenrod;
}

.menuItemListTitle > .expand {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 3;
}

.pageOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 21;
}
.pageOverlay > #contentReceiver {
  background: white;
  position: absolute;
  top: 180px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  overflow-y: auto;
}

#contentReceiver h1, #contentReceiver h2 {
  font-size: 40px;
  font-weight: 300;
  color: crimson;
}
#contentReceiver h3, #contentReceiver h4 {
  font-size: 30px;
  color: #426a8c;
  font-weight: 300;
}
#contentReceiver h5, #contentReceiver h6 {
  font-size: 16px;
  color: teal;
}
#contentReceiver div > b, #contentReceiver ul > b, #contentReceiver ol > b {
  font-size: 2em;
  color: crimson;
}
#contentReceiver li {
  color: darkred;
  padding-bottom: 8px;
  font-size: 16px;
}

#overlayMenu {
  margin: 10px;
  text-align: center;
}

.overlayOptions {
  margin: 5px;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  text-decoration: none;
  text-transform: capitalize;
  color: white;
  padding: 10px 0;
  background: black;
  cursor: pointer;
  display: inline-block;
  border-radius: 56px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.overlayOptions:hover {
  color: black;
  background: orange;
}
.overlayOptions:first-child {
  margin-left: 0;
}
.overlayOptions:last-child {
  margin-right: 0;
}

.contentLinks a {
  display: inline-block;
  font-size: 14px;
  background: black;
  color: white;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  margin: 0 3px;
  border-radius: 40px;
  text-decoration: none;
}
.contentLinks a:hover {
  background: darkred;
  color: goldenrod;
}

.wrap {
  white-space: normal !important;
}
.wrap > li {
  white-space: normal !important;
}

/* NAVIGATION DROP MENU */
#dropDownMenu {
  position: relative;
  color: white;
  font-size: 16px;
  line-height: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 20;
  border-radius: 20px;
  -ms-border-radius: 20px;
  /*IE 9*/
  background: #4c4c4c;
  /* Old browsers */
  background: -moz-linear-gradient(top, #4c4c4c 0%, #666666 8%, #474747 21%, #2c2c2c 48%, #000000 50%, #000000 51%, #2b2b2b 93%, #131313 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c4c4c), color-stop(8%, #666666), color-stop(21%, #474747), color-stop(48%, #2c2c2c), color-stop(50%, #000000), color-stop(51%, #000000), color-stop(93%, #2b2b2b), color-stop(100%, #131313));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #4c4c4c 0%, #666666 8%, #474747 21%, #2c2c2c 48%, #000000 50%, #000000 51%, #2b2b2b 93%, #131313 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #4c4c4c 0%, #666666 8%, #474747 21%, #2c2c2c 48%, #000000 50%, #000000 51%, #2b2b2b 93%, #131313 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #4c4c4c 0%, #666666 8%, #474747 21%, #2c2c2c 48%, #000000 50%, #000000 51%, #2b2b2b 93%, #131313 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #4c4c4c 0%, #666666 8%, #474747 21%, #2c2c2c 48%, #000000 50%, #000000 51%, #2b2b2b 93%, #131313 100%);
  /* W3C */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4c4c4c", endColorstr="#131313",GradientType=0 );
  /* IE6-9 */
  border: 1px rgba(110, 110, 110, 0.5) solid;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), inset 0 1px 3px rgba(255, 255, 255, 0.5), inset 0 -5px 10px rgba(83, 142, 159, 0.5), inset 0 -1px 3px rgba(255, 255, 255, 0.8);
}
#dropDownMenu.flat {
  background: none;
  filter: none;
  -ms-filter: none;
  border-radius: 0;
  box-shadow: none;
  height: 53px;
  border: 0;
  line-height: 53px;
}
#dropDownMenu.column {
  max-width: 200px;
  height: auto;
}

.dropMenuTab {
  position: relative;
  transition-property: background, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  height: 32px;
  line-height: 32px;
  border-right: 1.5px rgba(255, 255, 255, 0.5) solid;
  border-left: 1.5px rgba(255, 255, 255, 0.3) solid;
  display: inline-block;
  padding: 0 20px;
  vertical-align: top;
}
.dropMenuTab.reduce div {
  padding: 0 5px;
}

#dropDownMenu.flat .dropMenuTab {
  height: 53px;
  line-height: 53px;
}
#dropDownMenu.column .dropMenuTab {
  display: block;
  border: none;
}

.dropMenuTab:first-child {
  border-left: none;
  padding: 0 20px 0 25px;
  border-radius: 20px 0 0 20px;
}
.dropMenuTab:last-child {
  border-right: none;
  padding: 0 25px 0 20px;
  border-radius: 0 20px 20px 0;
}

#dropDownMenu.flat .dropMenuTab:first-child, #dropDownMenu.flat .dropMenuTab:last-child {
  padding: 0 20px;
  border-radius: 0;
}

.dropMenuTab:hover {
  transition-property: background, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  background: rgba(220, 20, 60, 0.5);
  box-shadow: 0 0 20px dodgerblue;
}
.dropMenuTab.reduce {
  padding: 0 10px !important;
  border-color: transparent !important;
}

.dropMenuList {
  color: goldenrod;
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  border: 2px white solid;
  border-top: 1px crimson solid;
  margin-left: -23px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 0 10px 10px 10px;
  min-width: 105%;
}

.child {
  display: inline-block;
  top: 0;
  left: 100%;
  margin: -2px -2px 0 0;
  z-index: 30;
  border-top: 2px white solid;
  min-width: 20px;
}

.dropMenuTab:first-child > .dropMenuList {
  min-width: calc(100% - 8px);
  margin-left: -8px;
}

.dropMenuListOptions:first-child > ul {
  margin-top: 10px;
}

.dropMenuList > li {
  position: relative;
  display: block;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  padding: 2px 10px;
  border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
}
.dropMenuList > li a {
  display: block;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
  text-decoration: none;
  font-size: 1.2em;
}
.dropMenuList > li:hover {
  color: crimson;
  /*background: rgba(218, 165, 32, .5);*/
  border-bottom: 1px crimson solid;
  box-shadow: 0 0 10px crimson, 0 0 20px pink;
}
.dropMenuList > li:hover a {
  color: crimson;
}
.dropMenuList > li:first-child {
  border-radius: 0 9px 0 0;
}
.dropMenuList > li:last-child {
  border-radius: 0 0 9px 9px;
  border-bottom: 0;
}

.dropMenuTab.reduce .dropMenuList {
  margin-left: -8px;
}
.dropMenuTab.reduce .childKey {
  display: none !important;
}

.childKey {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 0 5px;
}

.child li a {
  color: white !important;
}

.noformat {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.transparent {
  background-color: transparent !important;
  background-image: none !important;
}

.panelList {
  border: 1px white solid;
  border-top: 2px crimson solid;
}
.panelList .contentTitle {
  font-size: 20px !important;
  font-style: normal;
  color: crimson;
}
.panelList a {
  color: #505050;
  text-decoration: none;
}

#menuPanel a {
  color: #505050;
  text-decoration: none;
}

.panelList a:hover {
  color: crimson;
  text-decoration: underline blink;
}

#menuPanel {
  text-align: left;
}
#menuPanel a:hover {
  color: crimson;
  text-decoration: underline blink;
}

/* MAIN ICONS */
#newStealthIcon {
  position: absolute;
  display: block;
  background: url("/images/structure/head_logo.png") bottom center no-repeat;
  width: 366px;
  height: 102px;
  top: 0;
  left: 50%;
  margin-left: -183px;
  z-index: 30;
}

/* OLD WEB FORMATTING */
#productsShowcase {
  display: inline-block;
  vertical-align: top;
}

#stealthLinksContainer {
  display: inline-block;
  vertical-align: top;
  width: 700px;
}

#productsShowcase {
  width: 40%;
  width: calc(100% - 720px);
  margin: 0 10px;
}
#productsShowcase > .photoLinks {
  min-width: 100% !important;
}

#toTopNav {
  font-size: 1.2em !important;
  white-space: nowrap !important;
  z-index: 2 !important;
}

/* MEDIA CONTROL */
@media screen and (max-width: 1000px) {
  #mainHead {
    height: 56px !important;
  }

  .photoLinks {
    width: 48% !important;
    width: calc(50% - 20px) !important;
  }

  #productsShowcase, #stealthLinksContainer {
    display: block !important;
    width: 100%;
    max-width: 80% !important;
    margin: 0 auto;
  }

  .submenu_container {
    margin: 0;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .submenu_container > div {
    margin: 0;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .menuParent {
    margin: 0;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  #productsShowcase > .photoLinks {
    display: inline-block !important;
    min-width: 48%;
    max-width: 48%;
    min-width: calc(50% - 21px) !important;
    max-width: calc(50% - 21px) !important;
  }
  #productsShowcase > .photoLinks img {
    width: 100% !important;
  }

  #externalAds img {
    width: 100%;
  }

  #mainFooter {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .entry_title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .entry_title > a {
    display: none;
  }

  #newStealthIcon {
    display: none;
  }

  #topspace {
    min-height: 40px !important;
  }

  #dropDownMenu {
    border-radius: 0;
  }

  .dropMenuTab:first-child, .dropMenuTab:last-child {
    border-radius: 0;
  }

  .navIcon {
    display: inline-block;
  }
  .navIcon img {
    width: 25px !important;
    height: 25px !important;
  }
}
@media screen and (max-width: 639px) and (orientation: portrait) {
  body {
    margin: 0 !important;
  }

  body:hover #fullPageBottomLinks {
    display: none;
  }

  .article-columns {
    width: 98%;
    width: calc(100% - 20px);
    display: block;
    margin: 1em 0 0;
  }
  .article-columns._25, .article-columns._75 {
    width: 98%;
    width: calc(100% - 20px);
    display: block;
    margin: 1em 0 0;
  }
  .article-columns img {
    display: block;
    min-width: 100%;
    margin: 0;
  }

  .photoLinks {
    width: 98% !important;
    width: calc(100% - 20px) !important;
  }

  #productsShowcase, #stealthLinksContainer {
    display: block !important;
    width: 90% !important;
    margin: 0 auto;
  }

  .submenu_container {
    margin: 0;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .submenu_container > div {
    margin: 0;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .menuParent {
    margin: 0;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  #productsShowcase > .photoLinks {
    display: inline-block !important;
    min-width: 98%;
    max-width: 98%;
    min-width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
  }
  #productsShowcase > .photoLinks img {
    width: 100% !important;
  }

  #externalAds img {
    width: 100%;
  }

  #mainFooter {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .entry_title {
    font-size: 2em !important;
  }
  .entry_title > a {
    display: none;
  }

  #newStealthIcon {
    display: none;
  }

  #topspace {
    min-height: 40px !important;
  }

  #dropDownMenu {
    text-align: center !important;
    border-radius: 0;
  }

  .dropMenuTab:first-child, .dropMenuTab:last-child {
    border-radius: 0;
  }
  .dropMenuTab.reduce {
    padding: 0 !important;
  }

  .navIcon {
    margin: 0 !important;
    padding: 0 !important;
  }
  .navIcon img {
    width: 25px !important;
    height: 25px !important;
  }

  .dropMenuTab.reduce .dropMenuList {
    width: 180px !important;
    white-space: nowrap;
    overflow: hidden;
    margin-left: -90px !important;
  }

  .dropMenuListOptions a {
    width: 100%;
    text-overflow: ellipsis;
    text-align: left;
  }

  #productsGallery[type=mainGallery] {
    border-radius: 0;
    border: 2px black solid !important;
    border-width: 2px 0 !important;
  }

  .menuHolderPage, .switchInPage {
    float: none !important;
    display: block !important;
  }

  .dynMenuHover {
    float: none !important;
    display: block !important;
  }
  .dynMenuHover a {
    font-size: 1em !important;
  }
}
.background, .background-coolcore-fabric, .background-coolcore-fabric-logo {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
}
.background-coolcore-fabric, .background-coolcore-fabric-logo {
  background-image: url("/images/diagrams/seating/seat/cushions/backgrounds/coolcore-fabric.jpg");
  background-color: black;
}
.background-coolcore-fabric a.specLink:not(.simpleButton), .background-coolcore-fabric-logo a.specLink:not(.simpleButton) {
  color: white;
}
.background-coolcore-fabric a.specLink:not(.simpleButton):hover, .background-coolcore-fabric a.specLink:not(.simpleButton):visited, .background-coolcore-fabric a.specLink:not(.simpleButton):active, .background-coolcore-fabric-logo a.specLink:not(.simpleButton):hover, .background-coolcore-fabric-logo a.specLink:not(.simpleButton):visited, .background-coolcore-fabric-logo a.specLink:not(.simpleButton):active {
  color: gold !important;
}
.background-coolcore-fabric a.specLink:not(.simpleButton):after, .background-coolcore-fabric a.specLink:not(.simpleButton):before, .background-coolcore-fabric-logo a.specLink:not(.simpleButton):after, .background-coolcore-fabric-logo a.specLink:not(.simpleButton):before {
  color: white;
}
.background-coolcore-fabric div.content-tools a, .background-coolcore-fabric div.content-tools a.utilButton, .background-coolcore-fabric div.content-tools a > span.utilButton, .background-coolcore-fabric div.content-tools span, .background-coolcore-fabric div.content-tools span.utilButton, .background-coolcore-fabric div.content-tools span > span.utilButton, .background-coolcore-fabric-logo div.content-tools a, .background-coolcore-fabric-logo div.content-tools a.utilButton, .background-coolcore-fabric-logo div.content-tools a > span.utilButton, .background-coolcore-fabric-logo div.content-tools span, .background-coolcore-fabric-logo div.content-tools span.utilButton, .background-coolcore-fabric-logo div.content-tools span > span.utilButton {
  color: #333;
}
.background-coolcore-fabric div.content-tools a:hover, .background-coolcore-fabric div.content-tools a:visited, .background-coolcore-fabric div.content-tools a:active, .background-coolcore-fabric div.content-tools a.utilButton:hover, .background-coolcore-fabric div.content-tools a.utilButton:visited, .background-coolcore-fabric div.content-tools a.utilButton:active, .background-coolcore-fabric div.content-tools a > span.utilButton:hover, .background-coolcore-fabric div.content-tools a > span.utilButton:visited, .background-coolcore-fabric div.content-tools a > span.utilButton:active, .background-coolcore-fabric div.content-tools span:hover, .background-coolcore-fabric div.content-tools span:visited, .background-coolcore-fabric div.content-tools span:active, .background-coolcore-fabric div.content-tools span.utilButton:hover, .background-coolcore-fabric div.content-tools span.utilButton:visited, .background-coolcore-fabric div.content-tools span.utilButton:active, .background-coolcore-fabric div.content-tools span > span.utilButton:hover, .background-coolcore-fabric div.content-tools span > span.utilButton:visited, .background-coolcore-fabric div.content-tools span > span.utilButton:active, .background-coolcore-fabric-logo div.content-tools a:hover, .background-coolcore-fabric-logo div.content-tools a:visited, .background-coolcore-fabric-logo div.content-tools a:active, .background-coolcore-fabric-logo div.content-tools a.utilButton:hover, .background-coolcore-fabric-logo div.content-tools a.utilButton:visited, .background-coolcore-fabric-logo div.content-tools a.utilButton:active, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:hover, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:visited, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:active, .background-coolcore-fabric-logo div.content-tools span:hover, .background-coolcore-fabric-logo div.content-tools span:visited, .background-coolcore-fabric-logo div.content-tools span:active, .background-coolcore-fabric-logo div.content-tools span.utilButton:hover, .background-coolcore-fabric-logo div.content-tools span.utilButton:visited, .background-coolcore-fabric-logo div.content-tools span.utilButton:active, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:hover, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:visited, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:active {
  color: crimson !important;
}
.background-coolcore-fabric div.content-tools a:hover:after, .background-coolcore-fabric div.content-tools a:hover:before, .background-coolcore-fabric div.content-tools a:visited:after, .background-coolcore-fabric div.content-tools a:visited:before, .background-coolcore-fabric div.content-tools a:active:after, .background-coolcore-fabric div.content-tools a:active:before, .background-coolcore-fabric div.content-tools a.utilButton:hover:after, .background-coolcore-fabric div.content-tools a.utilButton:hover:before, .background-coolcore-fabric div.content-tools a.utilButton:visited:after, .background-coolcore-fabric div.content-tools a.utilButton:visited:before, .background-coolcore-fabric div.content-tools a.utilButton:active:after, .background-coolcore-fabric div.content-tools a.utilButton:active:before, .background-coolcore-fabric div.content-tools a > span.utilButton:hover:after, .background-coolcore-fabric div.content-tools a > span.utilButton:hover:before, .background-coolcore-fabric div.content-tools a > span.utilButton:visited:after, .background-coolcore-fabric div.content-tools a > span.utilButton:visited:before, .background-coolcore-fabric div.content-tools a > span.utilButton:active:after, .background-coolcore-fabric div.content-tools a > span.utilButton:active:before, .background-coolcore-fabric div.content-tools span:hover:after, .background-coolcore-fabric div.content-tools span:hover:before, .background-coolcore-fabric div.content-tools span:visited:after, .background-coolcore-fabric div.content-tools span:visited:before, .background-coolcore-fabric div.content-tools span:active:after, .background-coolcore-fabric div.content-tools span:active:before, .background-coolcore-fabric div.content-tools span.utilButton:hover:after, .background-coolcore-fabric div.content-tools span.utilButton:hover:before, .background-coolcore-fabric div.content-tools span.utilButton:visited:after, .background-coolcore-fabric div.content-tools span.utilButton:visited:before, .background-coolcore-fabric div.content-tools span.utilButton:active:after, .background-coolcore-fabric div.content-tools span.utilButton:active:before, .background-coolcore-fabric div.content-tools span > span.utilButton:hover:after, .background-coolcore-fabric div.content-tools span > span.utilButton:hover:before, .background-coolcore-fabric div.content-tools span > span.utilButton:visited:after, .background-coolcore-fabric div.content-tools span > span.utilButton:visited:before, .background-coolcore-fabric div.content-tools span > span.utilButton:active:after, .background-coolcore-fabric div.content-tools span > span.utilButton:active:before, .background-coolcore-fabric-logo div.content-tools a:hover:after, .background-coolcore-fabric-logo div.content-tools a:hover:before, .background-coolcore-fabric-logo div.content-tools a:visited:after, .background-coolcore-fabric-logo div.content-tools a:visited:before, .background-coolcore-fabric-logo div.content-tools a:active:after, .background-coolcore-fabric-logo div.content-tools a:active:before, .background-coolcore-fabric-logo div.content-tools a.utilButton:hover:after, .background-coolcore-fabric-logo div.content-tools a.utilButton:hover:before, .background-coolcore-fabric-logo div.content-tools a.utilButton:visited:after, .background-coolcore-fabric-logo div.content-tools a.utilButton:visited:before, .background-coolcore-fabric-logo div.content-tools a.utilButton:active:after, .background-coolcore-fabric-logo div.content-tools a.utilButton:active:before, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:hover:after, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:hover:before, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:visited:after, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:visited:before, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:active:after, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:active:before, .background-coolcore-fabric-logo div.content-tools span:hover:after, .background-coolcore-fabric-logo div.content-tools span:hover:before, .background-coolcore-fabric-logo div.content-tools span:visited:after, .background-coolcore-fabric-logo div.content-tools span:visited:before, .background-coolcore-fabric-logo div.content-tools span:active:after, .background-coolcore-fabric-logo div.content-tools span:active:before, .background-coolcore-fabric-logo div.content-tools span.utilButton:hover:after, .background-coolcore-fabric-logo div.content-tools span.utilButton:hover:before, .background-coolcore-fabric-logo div.content-tools span.utilButton:visited:after, .background-coolcore-fabric-logo div.content-tools span.utilButton:visited:before, .background-coolcore-fabric-logo div.content-tools span.utilButton:active:after, .background-coolcore-fabric-logo div.content-tools span.utilButton:active:before, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:hover:after, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:hover:before, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:visited:after, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:visited:before, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:active:after, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:active:before {
  color: inherit;
}
.background-coolcore-fabric div.content-tools a:after, .background-coolcore-fabric div.content-tools a:before, .background-coolcore-fabric div.content-tools a.utilButton:after, .background-coolcore-fabric div.content-tools a.utilButton:before, .background-coolcore-fabric div.content-tools a > span.utilButton:after, .background-coolcore-fabric div.content-tools a > span.utilButton:before, .background-coolcore-fabric div.content-tools span:after, .background-coolcore-fabric div.content-tools span:before, .background-coolcore-fabric div.content-tools span.utilButton:after, .background-coolcore-fabric div.content-tools span.utilButton:before, .background-coolcore-fabric div.content-tools span > span.utilButton:after, .background-coolcore-fabric div.content-tools span > span.utilButton:before, .background-coolcore-fabric-logo div.content-tools a:after, .background-coolcore-fabric-logo div.content-tools a:before, .background-coolcore-fabric-logo div.content-tools a.utilButton:after, .background-coolcore-fabric-logo div.content-tools a.utilButton:before, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:after, .background-coolcore-fabric-logo div.content-tools a > span.utilButton:before, .background-coolcore-fabric-logo div.content-tools span:after, .background-coolcore-fabric-logo div.content-tools span:before, .background-coolcore-fabric-logo div.content-tools span.utilButton:after, .background-coolcore-fabric-logo div.content-tools span.utilButton:before, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:after, .background-coolcore-fabric-logo div.content-tools span > span.utilButton:before {
  color: inherit;
}
.background-coolcore-fabric ol.accent-list li, .background-coolcore-fabric ol.accent-list.salespoints li, #mainBody .background-coolcore-fabric ol li, #mainBody .background-coolcore-fabric ol.salespoints li, .background-coolcore-fabric ul.accent-list li, .background-coolcore-fabric ul.accent-list.salespoints li, #mainBody .background-coolcore-fabric ul li, #mainBody .background-coolcore-fabric ul.salespoints li, .background-coolcore-fabric-logo ol.accent-list li, .background-coolcore-fabric-logo ol.accent-list.salespoints li, #mainBody .background-coolcore-fabric-logo ol li, #mainBody .background-coolcore-fabric-logo ol.salespoints li, .background-coolcore-fabric-logo ul.accent-list li, .background-coolcore-fabric-logo ul.accent-list.salespoints li, #mainBody .background-coolcore-fabric-logo ul li, #mainBody .background-coolcore-fabric-logo ul.salespoints li {
  border-color: #222;
  line-height: auto;
}
.background-coolcore-fabric ol.accent-list li:nth-child(even), .background-coolcore-fabric ol.accent-list.salespoints li:nth-child(even), #mainBody .background-coolcore-fabric ol li:nth-child(even), #mainBody .background-coolcore-fabric ol.salespoints li:nth-child(even), .background-coolcore-fabric ul.accent-list li:nth-child(even), .background-coolcore-fabric ul.accent-list.salespoints li:nth-child(even), #mainBody .background-coolcore-fabric ul li:nth-child(even), #mainBody .background-coolcore-fabric ul.salespoints li:nth-child(even), .background-coolcore-fabric-logo ol.accent-list li:nth-child(even), .background-coolcore-fabric-logo ol.accent-list.salespoints li:nth-child(even), #mainBody .background-coolcore-fabric-logo ol li:nth-child(even), #mainBody .background-coolcore-fabric-logo ol.salespoints li:nth-child(even), .background-coolcore-fabric-logo ul.accent-list li:nth-child(even), .background-coolcore-fabric-logo ul.accent-list.salespoints li:nth-child(even), #mainBody .background-coolcore-fabric-logo ul li:nth-child(even), #mainBody .background-coolcore-fabric-logo ul.salespoints li:nth-child(even) {
  color: #999;
}
.background-coolcore-fabric b, #mainBody #contentBody .entry-info .background-coolcore-fabric b, .background-coolcore-fabric strong, #mainBody #contentBody .entry-info .background-coolcore-fabric strong, .background-coolcore-fabric-logo b, #mainBody #contentBody .entry-info .background-coolcore-fabric-logo b, .background-coolcore-fabric-logo strong, #mainBody #contentBody .entry-info .background-coolcore-fabric-logo strong {
  color: lightgoldenrodyellow !important;
}
.background-coolcore-fabric .in-context-menu-nav-item:not(.select):not(:hover) .in-context-menu-label, .background-coolcore-fabric .in-context-menu-nav-item:not(.select):not(:hover) .in-context-menu-label span, #mainBody .background-coolcore-fabric .in-context-menu-nav-item:not(.select):not(:hover) .in-context-menu-label, #mainBody .background-coolcore-fabric .in-context-menu-nav-item:not(.select):not(:hover) .in-context-menu-label span, .background-coolcore-fabric-logo .in-context-menu-nav-item:not(.select):not(:hover) .in-context-menu-label, .background-coolcore-fabric-logo .in-context-menu-nav-item:not(.select):not(:hover) .in-context-menu-label span, #mainBody .background-coolcore-fabric-logo .in-context-menu-nav-item:not(.select):not(:hover) .in-context-menu-label, #mainBody .background-coolcore-fabric-logo .in-context-menu-nav-item:not(.select):not(:hover) .in-context-menu-label span {
  color: white;
}
.background-coolcore-fabric-logo {
  background-image: url("/images/diagrams/seating/seat/cushions/backgrounds/coolcore-fabric-logo.jpg");
  background-color: black;
}

@media screen and (max-width: 480px) {
  #fullPage ~ #mainFooter {
    font-size: 0px !important;
  }
  #fullPage ~ #mainFooter:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 14px !important;
    color: white;
    content: "Stealth Products, LLC. | +1(512) 715-9995";
  }
}
/*
@media screen
and (min-device-width : 481px),
(max-device-width : 768px){
    body {
        width: 100%;
    }

    * {
        font-size: 120%;
    }

    .menuList a{
        font-size: 100%;
    }

    #linksContainer {
        width: 410px;
    }

    .homeSecondary {
        width: 200px;
        margin: 0 10px 40px;
    }
}

@media screen
and (min-device-width : 320px),
(max-device-width : 480px){
    body {
        width: 100%;
    }

    * {
        font-size: 150%;
    }

    .menuList {
        font-size: 120%;
    }

    #linksContainer {
        width: 100%;
    }

    .homeSecondary {
        width: 100%;
        margin: 10px 0;
    }
}
*/

/*# sourceMappingURL=structure.css.map */
