@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700);
h1, h2, h3, h4, h5, h6 {
  color: #fff; }

/* Simple */
.simple {
  background-color: #353537;
  min-height: 400px;
  overflow: hidden;
  padding: 3.125em 10%; }
  .simple h1 {
    font-size: 3em; }
  .simple h1, .simple h2, .simple h3, .simple h4, .simple h5, .simple h6 {
    color: #fff; }
  .simple p {
    color: #D6D6D6;
    line-height: 1.45em; }
    .simple p + h2 {
      margin: 2em 0 0 0; }
  .simple ul {
    color: #D6D6D6; }
  .simple ul li + li {
    margin-top: 1em; }
  .simple a:link, .simple a:visited {
    color: #fdffd7;
    text-decoration: none; }
  .simple a:active, .simple a:hover {
    color: #fdffd7;
    text-decoration: underline; }

.full_width {
  max-width: 100%; }

.fluid_video {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16/9 format */
  overflow: hidden;
  position: relative; }

.fluid_video iframe, .fluid_video embed, .fluid_video object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0; }

/* variables - media queries */
/* mixins - responsive

allows nested media queries
allowed arguments: 

• medium-screens
• wide-screens
• extra-wide screen

 */
.flex-col-container {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  flex-direction: column; }
  @media only screen and (min-width: 768px) {
    .flex-col-container {
      flex-direction: row; } }

.flex-col-2 {
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .flex-col-2 {
      width: 75%;
      padding: 10px; } }

.flex-cols-container {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex; }

.flex-cols-auto-2 {
  flex: 1; }

/* Grid Layouts 
inspired by https://julian.is/article/css-grid-at-scale/
*/
@media only screen and (min-width: 768px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4, .grid-cols-5, .grid-cols-6, .grid-cols-8, .grid-cols-12, .grid-cols-auto-fit {
    display: grid;
    grid-template-rows: auto;
    grid-gap: 1.5em;
    grid-template-columns: 1fr; } }

.grid-cols-2-2, .grid-cols-2-3, .grid-cols-2-4, .grid-cols-2-5, .grid-cols-2-8 {
  display: grid;
  grid-template-rows: auto;
  grid-gap: 1.5em;
  grid-template-columns: 1fr 1fr; }

.grid-cols-3-8 {
  display: grid;
  grid-template-rows: auto;
  grid-gap: 1.5em;
  grid-template-columns: 1fr 1fr 1fr; }

/* 
grid-cols-x   = 1 column mobile
grid-cols-2-x = 2 column mobile
*/
@media only screen and (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr); } }

@media only screen and (min-width: 768px) {
  .grid-cols-2-2 {
    grid-template-columns: repeat(2, 1fr); } }

@media only screen and (min-width: 768px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr); } }

.grid-cols-2-3 {
  grid-auto-rows: 1fr; }
  @media only screen and (min-width: 768px) {
    .grid-cols-2-3 {
      grid-template-columns: repeat(3, 1fr); } }

@media only screen and (min-width: 768px) {
  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr); } }

.grid-cols-2-4 {
  grid-auto-rows: 1fr; }
  @media only screen and (min-width: 768px) {
    .grid-cols-2-4 {
      grid-template-columns: repeat(4, 1fr); } }

@media only screen and (min-width: 768px) {
  .grid-cols-5 {
    grid-template-columns: repeat(5, 1fr); } }

.grid-cols-2-5 {
  grid-auto-rows: 1fr; }
  @media only screen and (min-width: 768px) {
    .grid-cols-2-5 {
      grid-auto-rows: 1fr;
      grid-template-columns: repeat(5, 1fr); } }

@media only screen and (min-width: 768px) {
  .grid-cols-6 {
    grid-template-columns: repeat(6, 1fr); } }

.grid-cols-8 {
  grid-auto-rows: 1fr; }
  @media only screen and (min-width: 768px) {
    .grid-cols-8 {
      grid-template-columns: repeat(8, 1fr); } }

.grid-cols-2-8 {
  grid-auto-rows: 1fr; }
  @media only screen and (min-width: 768px) {
    .grid-cols-2-8 {
      grid-template-columns: repeat(8, 1fr); } }

.grid-cols-3-8 {
  grid-auto-rows: 1fr; }
  @media only screen and (min-width: 768px) {
    .grid-cols-3-8 {
      grid-template-columns: repeat(8, 1fr); } }

.grid-cols-12 {
  grid-auto-rows: 1fr; }
  @media only screen and (min-width: 768px) {
    .grid-cols-12 {
      grid-template-columns: repeat(12, 1fr); } }

@media only screen and (min-width: 768px) {
  .grid-cols-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(15.625em, 1fr)); } }

/* No CSS Fallback - requires Modernizr */
@media only screen and (min-width: 768px) {
  .no-cssgrid .cols-2 > * {
    width: 50%;
    padding-right: 66px;
    float: left;
    margin-bottom: 66px; } }
@media only screen and (min-width: 768px) {
  .no-cssgrid .cols-3 > * {
    width: 33.3%;
    padding-right: 66px;
    float: left;
    margin-bottom: 66px; } }
@media only screen and (min-width: 768px) {
  .no-cssgrid .cols-4 > * {
    width: 25%;
    padding-right: 66px;
    float: left;
    margin-bottom: 66px; } }
@media only screen and (min-width: 768px) {
  .no-cssgrid .cols-5 > * {
    width: 20%;
    padding-right: 66px;
    float: left;
    margin-bottom: 66px; } }
@media only screen and (min-width: 768px) {
  .no-cssgrid .cols-auto-fit {
    text-align: center; }
    .no-cssgrid .cols-auto-fit > * {
      min-width: 15.625em;
      padding-right: 66px;
      display: inline-block;
      margin-bottom: 66px; } }

.global_header {
  padding: 10px 0 0 0;
  width: 100%;
  height: 70px; }
  @media only screen and (min-width: 600px) {
    .global_header {
      height: 100px; } }
  .global_header .nav_and_search {
    margin: 10px 0 0 0; }
    @media only screen and (min-width: 768px) {
      .global_header .nav_and_search {
        margin: 15px 0 0 0; } }
    @media only screen and (min-width: 1030px) {
      .global_header .nav_and_search {
        margin: 20px 0 0 0; } }
    @media only screen and (min-width: 1200px) {
      .global_header .nav_and_search {
        margin: 25px 0 0 0; } }
  @media only screen and (min-width: 1200px) {
    .global_header {
      padding: 10px 0 0 0; } }

.logo_container {
  float: left;
  width: 100px;
  overflow: hidden; }
  .logo_container h1 {
    margin: 0 0 0 0; }
  .logo_container img {
    width: 90px;
    padding: 0.2em; }
  @media only screen and (min-width: 768px) {
    .logo_container {
      width: 120px; }
      .logo_container img {
        width: 100px; } }
  @media only screen and (min-width: 1030px) {
    .logo_container {
      width: 175px; }
      .logo_container img {
        width: 150px; } }
  @media only screen and (min-width: 1200px) {
    .logo_container {
      width: 200px; }
      .logo_container img {
        width: 175px; } }

.global_search {
  display: block;
  margin: 0 0 0 0; }

.global_footer {
  padding: 2em 0 5em 0;
  position: relative;
  clear: both; }
  .global_footer h1 {
    color: #fff;
    font-weight: normal; }
  .global_footer ul {
    list-style-type: none;
    padding: 0; }
    .global_footer ul li {
      margin: 0 0 0.5em 0; }
      .global_footer ul li a:link, .global_footer ul li a:visited {
        color: #ccc;
        text-decoration: none; }
      .global_footer ul li a:active, .global_footer ul li a:hover {
        color: #fff;
        text-decoration: underline; }
  .global_footer .mc-field-group label {
    color: #fff; }
  .global_footer #mc_embed_signup {
    color: #fff; }

.connect_and_info {
  padding: 0 1em; }
  @media only screen and (min-width: 1200px) {
    .connect_and_info {
      padding: 0 0 0 0; } }
  .connect_and_info .connect_and_info_inner {
    margin: 0 1em 0 0; }
    @media only screen and (min-width: 1200px) {
      .connect_and_info .connect_and_info_inner {
        margin: 0 0 0 0; } }
  .connect_and_info p {
    font-size: 0.8em;
    font-style: italic; }

.global_body {
  background-color: #0f0e0e; }

.global_container {
  max-width: 1200px;
  margin: 0px auto; }

.global_container_inner {
  padding: 0 0 0 0;
  background: url(/imgs/signature.png) top left no-repeat; }

.global_nav .nav {
  display: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .global_nav .nav {
      display: block; } }
.global_nav .nav li.nav_top_level_container {
  margin: 0 0 0 0;
  padding: 22px 12px 40px 12px;
  list-style-type: none;
  display: inline; }
  @media only screen and (min-width: 768px) {
    .global_nav .nav li.nav_top_level_container {
      padding: 22px 12px 54px 12px; } }
  @media only screen and (min-width: 1030px) {
    .global_nav .nav li.nav_top_level_container {
      padding: 22px 15px 54px 15px; } }
  @media only screen and (min-width: 1200px) {
    .global_nav .nav li.nav_top_level_container {
      padding: 22px 18px 54px 18px; } }
.global_nav .nav li.nav_search_container {
  margin: 0 0 0 0;
  list-style-type: none;
  display: inline;
  overflow: auto; }
.global_nav .dropdown_indicator {
  background: url(/imgs/icons/down_arrow_x2.png) center no-repeat;
  background-size: 44px;
  padding: 0 0 2.2em 0; }
.global_nav .nav li a.nav_top_level_link {
  font-size: 1.2em; }
  .global_nav .nav li a.nav_top_level_link:link, .global_nav .nav li a.nav_top_level_link:visited {
    color: #fff;
    background-color: transparent;
    text-decoration: none; }
  .global_nav .nav li a.nav_top_level_link:active, .global_nav .nav li a.nav_top_level_link:hover {
    color: #fff;
    background-color: #111;
    text-decoration: none; }
.global_nav .nav li a.nav_second_level {
  font-size: 1.2em;
  text-transform: uppercase; }
  .global_nav .nav li a.nav_second_level:link, .global_nav .nav li a.nav_second_level:visited {
    color: #fff;
    background-color: transparent;
    text-decoration: none; }
  .global_nav .nav li a.nav_second_level:active, .global_nav .nav li a.nav_second_level:hover {
    color: #fdffd7;
    background-color: #111;
    text-decoration: none; }
.global_nav .nav li div.nav_second_level {
  color: #fff;
  font-size: 1.2em;
  text-transform: uppercase; }
.global_nav .nav_second_level {
  font-size: 1.2em;
  text-transform: uppercase; }
  .global_nav .nav_second_level a:link, .global_nav .nav_second_level a:visited {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase; }
  .global_nav .nav_second_level a:active, .global_nav .nav_second_level a:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: underline;
    text-transform: uppercase; }
.global_nav .nav_third_level {
  font-size: 0.9em;
  margin: 0.9em 0 0 0;
  text-transform: none !important; }
  .global_nav .nav_third_level a:link, .global_nav .nav_third_level a:visited {
    background-color: transparent;
    color: #ccc;
    text-decoration: none;
    text-transform: none; }
  .global_nav .nav_third_level a:active, .global_nav .nav_third_level a:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: underline;
    text-transform: none; }
  .global_nav .nav_third_level + .nav_third_level {
    margin: 0.7em 0 0 0; }
.global_nav .searchbox {
  display: inline;
  float: right;
  width: 220px;
  margin: 0 1em 0 0; }
  @media only screen and (min-width: 1030px) {
    .global_nav .searchbox {
      width: auto; } }
  .global_nav .searchbox .searchfield {
    color: #fff;
    background: transparent;
    font-size: 0.8em;
    padding: 0.4em 0.5em 0.4em 1em;
    border: 1px solid #ccc;
    width: 175px;
    float: left; }
  .global_nav .searchbox .searchsubmit {
    border: none;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    float: right;
    margin: 4px 0 0 15px; }

#small_nav {
  display: block;
  float: right;
  padding-top: 6px; }
  @media only screen and (min-width: 768px) {
    #small_nav {
      display: none; } }
  #small_nav a {
    display: block;
    padding: 0 20px 0 110px;
    background: url("/imgs/menu_mobile.png") top no-repeat;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none; }
    #small_nav a:link, #small_nav a:visited {
      color: #fff; }
    #small_nav a:active, #small_nav a:hover {
      color: #ddd; }

.nav_second_level_inner {
  padding: 1em; }

.global_sub {
  display: none;
  background: green;
  position: absolute;
  margin: 40px 0 0 0;
  width: 100%;
  z-index: 9999;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75); }
  .global_sub ul {
    margin: 0 0 0 0;
    padding: 0 0 0 0; }

.global_sub_inner {
  background: #111;
  padding: 1.5em; }

.global_sub_intro {
  color: #999;
  font-size: 0.8em;
  line-height: 1.4em;
  margin: 1em 0 0 0; }

.nav li:hover .global_sub {
  display: block; }

.nav li:hover {
  background-color: #111; }

#mobile_footer_menu {
  display: block;
  border: none;
  background-color: #262626;
  clear: both;
  padding: 20px 0;
  font-family: sans-serif; }
  @media only screen and (min-width: 768px) {
    #mobile_footer_menu {
      display: none; } }
  #mobile_footer_menu a:link, #mobile_footer_menu a:visited {
    color: #AFAFAF; }
  #mobile_footer_menu a:active, #mobile_footer_menu a:hover {
    color: #fff;
    background-color: #A9BDD7; }
  #mobile_footer_menu ul li + li {
    border-top: 1px solid #333; }
  #mobile_footer_menu .products_menu, #mobile_footer_menu .insideprs_menu, #mobile_footer_menu .support_menu, #mobile_footer_menu .dealers_menu {
    display: none; }
    #mobile_footer_menu .products_menu span, #mobile_footer_menu .insideprs_menu span, #mobile_footer_menu .support_menu span, #mobile_footer_menu .dealers_menu span {
      margin-left: 1.5em; }
  #mobile_footer_menu .nav_search_container {
    overflow: auto; }
  #mobile_footer_menu .searchbox {
    display: inline;
    float: left;
    padding: 1.5em 1em 1em 1em;
    width: 220px; }
    @media only screen and (min-width: 1030px) {
      #mobile_footer_menu .searchbox {
        width: auto; } }
    #mobile_footer_menu .searchbox .searchfield {
      color: #fff;
      background: transparent;
      font-size: 0.8em;
      padding: 0.4em 0.5em 0.4em 1em; }
    #mobile_footer_menu .searchbox .searchsubmit {
      border: none;
      width: 20px;
      height: 20px; }
  #mobile_footer_menu .showhide {
    float: right; }
  #mobile_footer_menu .pure-menu-heading {
    text-transform: none; }
    #mobile_footer_menu .pure-menu-heading span {
      text-transform: uppercase;
      color: #fff; }
  #mobile_footer_menu .nav_third_level {
    font-size: 0.9em;
    margin: 0.9em 0 0 0;
    text-transform: none !important; }
    #mobile_footer_menu .nav_third_level a:link, #mobile_footer_menu .nav_third_level a:visited {
      background-color: transparent;
      color: #ccc;
      text-decoration: none;
      text-transform: none; }
    #mobile_footer_menu .nav_third_level a:active, #mobile_footer_menu .nav_third_level a:hover {
      background-color: transparent;
      color: #fff;
      text-decoration: underline;
      text-transform: none; }
    #mobile_footer_menu .nav_third_level + .nav_third_level {
      margin: 0.7em 0 0 0; }

.ghost_button_general {
  background: transparent;
  border: 1px solid #ccc;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 80%;
  font-weight: normal;
  margin: 1em auto;
  overflow: hidden;
  padding: 0.75em 1.8em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s ease 0s; }
  .ghost_button_general:hover {
    background: #ccc;
    border: 1px solid #ccc;
    color: #333; }

.button-small {
  font-size: 85%; }

#core_philosophy_carousel li {
  width: 100%;
  text-align: center; }
  #core_philosophy_carousel li img {
    max-width: 100%; }

@font-face {
  font-family: 'si';
  src: url("/imgs/social/socicon.eot");
  src: url("/imgs/social/socicon.eot?#iefix") format("embedded-opentype"), url("/imgs/social/socicon.woff") format("woff"), url("/imgs/social/socicon.ttf") format("truetype"), url("/imgs/social/socicon.svg#icomoonregular") format("svg");
  font-weight: normal;
  font-style: normal; }
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: si;
    src: url("/imgs/social/socicon.svg") format(svg); } }
.soc {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none; }

.soc li {
  display: inline-block;
  *display: inline;
  zoom: 1; }

.soc li a {
  font-family: si !important;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  display: block;
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 26px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin-right: 0px;
  color: #ccc;
  background-color: transparent; }

.soc-icon-last {
  margin: 0 !important; }

.soc-twitter:before {
  content: '\e040'; }

.soc-facebook:before {
  content: '\e041'; }

.soc-googleplus:before {
  content: '\e042'; }

.soc-youtube:before {
  content: '\e051'; }

.soc-instagram:before {
  content: '\e057'; }

.carousel_container {
  margin: 5em auto 7em auto; }

.button_link {
  margin: 2em 0 0 0; }
  .button_link a {
    display: block;
    max-width: 100%;
    padding: .5em 1em;
    text-decoration: none; }
    @media only screen and (min-width: 600px) {
      .button_link a {
        max-width: 80%; } }
    .button_link a:link, .button_link a:visited {
      color: #ccc;
      background-color: #333; }
    .button_link a:active, .button_link a:hover {
      color: #fff;
      background-color: #666; }

.aboutprs {
  background-color: #141414;
  overflow: auto;
  padding: 0 0 4em 0; }

.intro {
  background: url(/imgs/about/bg_intro.jpg) top no-repeat #141414;
  min-height: 349px; }
  .intro h1 {
    color: #fff;
    margin: 0;
    padding: 0 0 23px 0;
    font-size: 3em;
    text-align: center; }
    @media only screen and (min-width: 600px) {
      .intro h1 {
        font-size: 3.063em;
        text-align: left; } }
    .intro h1 span {
      font-size: .75em;
      display: block; }
      @media only screen and (min-width: 600px) {
        .intro h1 span {
          font-size: 1em;
          display: inline; } }
  .intro ul {
    margin: 0.4em 0 0 0;
    padding: 0;
    text-align: center; }
    @media only screen and (min-width: 600px) {
      .intro ul {
        margin: 0;
        padding: 0;
        text-align: left; } }
  .intro li {
    font-size: 1.25em;
    display: block;
    float: none; }
    @media only screen and (min-width: 600px) {
      .intro li {
        float: left; } }
    .intro li a:link, .intro li a:visited {
      color: #ccc;
      text-decoration: none; }
    .intro li a:active, .intro li a:hover {
      color: #ddd;
      text-decoration: none; }
  .intro li + li {
    padding: 0 0 0 0;
    margin: .5em 0 0 0; }
    @media only screen and (min-width: 600px) {
      .intro li + li {
        padding: 0 0 0 .7em;
        margin: 0 0 0 .5em;
        border-left: 3px solid #ccc; } }
  .intro .inner_container {
    max-width: 80%;
    margin: 0px auto;
    padding: 45px 0 0 0; }
    @media only screen and (min-width: 600px) {
      .intro .inner_container {
        padding: 100px 0 0 0; } }

#mission {
  max-width: 95%;
  margin: 0px auto;
  text-align: center;
  padding: 20px 0 50px 0; }
  @media only screen and (min-width: 600px) {
    #mission {
      max-width: 62%;
      padding: 50px 0 100px 0; } }
  #mission h2 {
    color: #fff;
    font-size: 2.5em; }
  #mission p {
    color: #fff;
    font-size: 1em;
    line-height: 1.5em; }
  #mission img {
    max-width: 100%;
    padding: 1.2em 0 0 0; }

#tours {
  max-width: 100%;
  overflow: auto;
  background: url(/imgs/about/bg_tours.jpg) top no-repeat #141414;
  padding: 20px 0 60px 0; }
  #tours h2 {
    color: #fff;
    font-size: 2.438em; }
  #tours p {
    color: #fff;
    font-size: 1em;
    line-height: 1.3em; }
  #tours .inner_container {
    max-width: 93.3333%;
    margin: 0px auto; }
    @media only screen and (min-width: 768px) {
      #tours .inner_container {
        margin: 0 0 0 0;
        padding: 0 0 0 130px;
        max-width: 64.5535%; } }

.about_section {
  border-top: 1px solid #ccc; }
  @media only screen and (min-width: 600px) {
    .about_section {
      border-top: none; } }

#careers {
  display: block;
  max-width: 93.3333%;
  margin: 72px auto 0 auto;
  overflow: hidden;
  padding: 1em 0; }
  #careers h2 {
    color: #fff;
    font-size: 2.438em;
    margin: 0 0 27px 0;
    padding: 0; }
  #careers img {
    max-width: 100%; }
  #careers p {
    color: #fff;
    font-size: 1em;
    line-height: 1.3em; }
  #careers .current_openings {
    float: none;
    max-width: 95%;
    padding: 0 0 0 0;
    margin: 75px 0 0 0; }
    @media only screen and (min-width: 600px) {
      #careers .current_openings {
        float: left;
        max-width: 38.5%;
        margin: 0 0 0 0; }
        #careers .current_openings .inner_container {
          padding: 0 0 0 30px; } }
    #careers .current_openings h3 {
      font-size: 1.563em;
      margin: 0 0 1em 0;
      text-transform: uppercase; }
    #careers .current_openings ul {
      list-style-type: circle;
      color: #fff; }
      #careers .current_openings ul li + li {
        margin-top: 1em; }
      #careers .current_openings ul li {
        font-size: 1.2em; }
        #careers .current_openings ul li a:link, #careers .current_openings ul li a:visited {
          color: #999;
          text-decoration: none; }
        #careers .current_openings ul li a:active, #careers .current_openings ul li a:hover {
          color: #666;
          text-decoration: none; }

.about_careers {
  float: none;
  max-width: 95%;
  font-size: 1em;
  line-height: 1.2em; }
  @media only screen and (min-width: 600px) {
    .about_careers {
      float: left;
      max-width: 61.5%; } }

.story_and_detail_container {
  max-width: 93.3333%;
  margin: 70px auto 0 auto; }
  .story_and_detail_container h2 {
    color: #fff;
    font-size: 2.438em; }
  .story_and_detail_container img {
    max-width: 100%; }
  .story_and_detail_container p {
    color: #fff;
    font-size: 1em;
    line-height: 1.3em; }

#story, #detail {
  float: none;
  max-width: 95%;
  margin: 0px auto; }
  @media only screen and (min-width: 600px) {
    #story, #detail {
      float: left;
      max-width: 50%; } }
  #story .inner_container, #detail .inner_container {
    max-width: 100%; }
    @media only screen and (min-width: 600px) {
      #story .inner_container, #detail .inner_container {
        max-width: 94%; } }

#detail {
  margin: 100px 0 0 0; }
  @media only screen and (min-width: 600px) {
    #detail {
      margin: 0 0 0 0; } }

.storypage {
  max-width: 85%;
  margin: 0px auto;
  text-align: center;
  padding: 70px 0 50px 0; }
  @media only screen and (min-width: 600px) {
    .storypage {
      max-width: 62%;
      padding: 50px 0 100px 0; } }
  .storypage h2 {
    color: #fff;
    font-size: 1.9em;
    margin: 0 0 .5em 0;
    padding: 0; }
    @media only screen and (min-width: 600px) {
      .storypage h2 {
        font-size: 2.9em; } }
  .storypage h3 {
    color: #ccc;
    margin: 0 0 2em 0;
    font-style: italic;
    font-size: 1.1em; }
  .storypage p {
    color: #fff;
    font-size: 1em;
    line-height: 1.4em; }
    @media only screen and (min-width: 600px) {
      .storypage p {
        font-size: 1.15em; } }
  .storypage img {
    max-width: 100%;
    padding: 1.2em 0 0 0; }

.tourspage {
  max-width: 100%;
  overflow: auto;
  padding: 0 0 60px 0; }
  .tourspage h2 {
    font-size: 2.438em; }
  .tourspage h3 {
    font-size: 2em;
    margin: 0;
    padding: 0; }
  .tourspage p {
    color: #fff;
    font-size: 1em;
    line-height: 1.3em; }
  .tourspage iframe {
    max-width: 100%; }
  .tourspage .inner_container {
    max-width: 93.3333%;
    margin: 0px auto; }
    @media only screen and (min-width: 600px) {
      .tourspage .inner_container {
        padding: 0 0 0 0;
        max-width: 75%; } }
  .tourspage p + h3 {
    margin-top: 0; }
    @media only screen and (min-width: 600px) {
      .tourspage p + h3 {
        margin-top: 50px; } }
  .tourspage p a:link, .tourspage p a:visited {
    text-decoration: underline;
    color: #fff; }
  .tourspage p a:active, .tourspage p a:hover {
    text-decoration: underline;
    color: #ccc; }

.tours_intro {
  background: url(/imgs/about/bg_tourspage.jpg) top no-repeat #141414; }
  .tours_intro .tours_intro_inner_container {
    max-width: 85%;
    margin: 0px auto;
    padding: 30px 0 50px 0; }
    @media only screen and (min-width: 600px) {
      .tours_intro .tours_intro_inner_container {
        max-width: 85%;
        padding: 55px 0 50px 0; } }
  .tours_intro h1 {
    color: #fff;
    font-size: 2.5em;
    margin: 0;
    padding: 0; }
    @media only screen and (min-width: 600px) {
      .tours_intro h1 {
        font-size: 3em; } }
  .tours_intro p {
    color: #fff;
    font-size: 1em;
    line-height: 1.3em; }
    .tours_intro p + p {
      margin-top: 2em; }
    @media only screen and (min-width: 600px) {
      .tours_intro p {
        max-width: 65%; } }

.tours_information .tours_information_inner_container {
  max-width: 85%;
  margin: 0px auto;
  padding: 0 0 50px 0; }
  @media only screen and (min-width: 600px) {
    .tours_information .tours_information_inner_container {
      max-width: 85%;
      margin: 0px auto;
      padding: 5px 0 50px 0; } }
.tours_information ul {
  margin: 2em 0 0 0;
  padding: 0 0 0 20px;
  color: #fff; }
  .tours_information ul li + li {
    margin-top: 1em; }

.tours_information_block {
  color: #fff;
  max-width: 90%; }
  .tours_information_block + .tours_information_block {
    margin-top: 75px; }
  .tours_information_block p + p {
    margin-top: 1.2em; }

.directions {
  color: #fff; }
  .directions .directions_inner_container {
    max-width: 85%;
    margin: 0px auto;
    padding: 0 0 50px 0; }
    @media only screen and (min-width: 600px) {
      .directions .directions_inner_container {
        max-width: 85%;
        margin: 0px auto;
        padding: 5px 0 50px 0; } }
  .directions ul {
    margin: 50px 0;
    padding: 0 0 0 0;
    color: #fff;
    font-size: 1.25em;
    list-style-type: none; }
    .directions ul li + li {
      margin-top: .4em; }

.toscheduleyourtour {
  margin-top: 50px; }
  @media only screen and (min-width: 600px) {
    .toscheduleyourtour {
      margin-top: 0; } }

.schedule_a_tour {
  color: #fff; }
  .schedule_a_tour .schedule_a_tour_inner_container {
    max-width: 85%;
    margin: 0px auto;
    padding: 0 0 50px 0; }
    @media only screen and (min-width: 600px) {
      .schedule_a_tour .schedule_a_tour_inner_container {
        max-width: 85%;
        margin: 0px auto;
        padding: 5px 0 50px 0; } }
  .schedule_a_tour form {
    max-width: 100%; }

#contactform legend {
  color: #ccc;
  margin: 0 0 40px 0; }
#contactform input {
  color: #000; }

.tours_form_field {
  color: #fff; }

.storm_tour_update {
  padding: 1em 0; }
  .storm_tour_update .storm_tour_update_copy {
    display: none; }

/* ghost buttons 
$font-color, $font-color-active, $border-color
*/
/* variables - colors */
.inner_block, .artist_news .inner, .artist_news_top_stories .inner, .artist_news_secondary_stories .inner, .artist_story_archives .inner, .international_artists .inner, .signature_artists .inner, .artist_videos .inner, .artist_list .inner, .new_artists .inner, .artist_inquiry .inner, .other_news .inner {
  width: 93.333333%;
  margin: 0px auto;
  padding: 4em 0; }

/*layout only styles */
body {
  background-color: #000; }

.artists_header, .artists_header_large, .artists_header_small {
  background-color: #121212;
  width: 100%;
  height: 100%;
  overflow: hidden; }
  .artists_header h1, .artists_header_large h1, .artists_header_small h1 {
    margin: 0;
    padding: 0; }
    .artists_header h1 a:link, .artists_header_large h1 a:link, .artists_header_small h1 a:link, .artists_header h1 a:visited, .artists_header_large h1 a:visited, .artists_header_small h1 a:visited {
      color: #fff;
      text-decoration: none; }
    .artists_header h1 a:active, .artists_header_large h1 a:active, .artists_header_small h1 a:active, .artists_header h1 a:hover, .artists_header_large h1 a:hover, .artists_header_small h1 a:hover {
      color: #ccc;
      text-decoration: none; }
  .artists_header .artists_nav li, .artists_header_large .artists_nav li, .artists_header_small .artists_nav li {
    text-transform: uppercase; }

.artists_header_large {
  min-height: 75px;
  padding: 1.5em 0 0 0; }
  .artists_header_large h1 {
    padding: 0;
    text-align: center; }
    .artists_header_large h1 img {
      margin: 0.2em 0 0 0;
      max-width: 100%; }
  .artists_header_large .artists_nav li {
    font-size: 0.8em; }
  @media only screen and (min-width: 1030px) {
    .artists_header_large {
      padding: 0 0 0 0; }
      .artists_header_large h1 {
        margin: 0 0 0 0;
        text-align: left; } }

.artists_header_small {
  min-height: 45px;
  padding: 1.5em 0 0 0; }
  .artists_header_small h1 {
    padding: 0;
    text-align: center; }
    .artists_header_small h1 img {
      margin: 0.2em 0 0 0;
      max-width: 75%; }
  .artists_header_small .artists_nav li {
    font-size: 0.8em; }
  @media only screen and (min-width: 1030px) {
    .artists_header_small {
      padding: 0 0 0 0; }
      .artists_header_small h1 {
        margin: 0 0 0 0;
        text-align: left; } }

.artists_header_inner {
  max-width: 100%;
  margin: 0px auto;
  position: relative;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .artists_header_inner {
      max-width: 100%;
      margin: 0px auto; } }

.artists_title {
  float: none;
  overflow: hidden;
  width: 100%; }
  @media only screen and (min-width: 1030px) {
    .artists_title {
      float: left;
      width: 30%; } }

.artist_nav_button {
  margin: 1.3em auto 2em auto;
  text-align: center;
  color: #fff;
  display: block;
  border: 1px solid #FFF699;
  background-color: transparent;
  padding: 1em 0.75em;
  text-transform: uppercase;
  font-size: 0.8em; }
  .artist_nav_button:hover {
    color: #1E1D1D;
    background-color: #FFF699;
    border: 1px solid #FFF699; }
  .artist_nav_button a {
    display: block;
    text-decoration: none; }
    .artist_nav_button a:link, .artist_nav_button a:visited {
      color: #fff; }
    .artist_nav_button a:active, .artist_nav_button a:hover {
      color: #1E1D1D; }
  @media only screen and (min-width: 600px) {
    .artist_nav_button {
      display: none; } }

.artists_nav {
  float: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  position: relative; }
  .artists_nav ul {
    display: none;
    margin: 1em 0 2em 0;
    padding: 0;
    list-style-type: none;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.1em; }
  .artists_nav li {
    margin: 0;
    text-align: center;
    vertical-align: middle; }
    .artists_nav li a {
      display: block;
      width: 100%;
      padding: 0.5em 0; }
      .artists_nav li a:link, .artists_nav li a:visited {
        color: #fff;
        text-decoration: none;
        background-color: none; }
      .artists_nav li a:active, .artists_nav li a:hover {
        color: #1E1D1D;
        text-decoration: none;
        background-color: #FFF699; }
  @media only screen and (min-width: 600px) {
    .artists_nav {
      float: none;
      width: 100%;
      text-align: center; }
      .artists_nav ul {
        display: block; }
        .artists_nav ul li {
          display: inline-block; } }
  @media only screen and (min-width: 1030px) {
    .artists_nav {
      float: right;
      width: 65%;
      text-align: right;
      padding: 0 5% 0 0; }
      .artists_nav ul {
        display: inline;
        text-align: right; }
      .artists_nav li {
        display: inline-block;
        line-height: 85px; }
        .artists_nav li a {
          padding: 0 8px;
          width: auto;
          height: 85px; }
          .artists_nav li a:link, .artists_nav li a:visited {
            background-color: none; }
          .artists_nav li a:active, .artists_nav li a:hover {
            background-color: #FFF699; } }

.featured_artist_container {
  clear: both;
  background-color: #000;
  overflow: hidden;
  position: relative; }
  .featured_artist_container img {
    max-width: 100%;
    display: block; }

.hero_copy_container {
  display: auto;
  padding: 0.75em;
  background-color: #1b1b1b;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666; }
  .hero_copy_container h2 {
    font-size: 1.75em;
    margin: 0.25em 0 0 0;
    padding: 0; }
    .hero_copy_container h2 a:link, .hero_copy_container h2 a:visited {
      color: #fff;
      text-decoration: none; }
    .hero_copy_container h2 a:active, .hero_copy_container h2 a:hover {
      color: #fff;
      text-decoration: underline; }
  .hero_copy_container h3 {
    color: #ddd;
    font-size: 0.65em;
    margin: 0;
    padding: 0;
    text-transform: uppercase; }
  @media only screen and (min-width: 600px) {
    .hero_copy_container {
      display: none;
      padding: 0.75em; }
      .hero_copy_container h2 {
        font-size: 3em;
        margin: 0;
        padding: 0; }
      .hero_copy_container h3 {
        font-size: 0.75em;
        margin: 0;
        padding: 0; } }

.featured_artist_selector_container {
  background-color: #080808;
  margin: 0px auto;
  overflow: hidden;
  padding: 0 0 2px 0; }
  .featured_artist_selector_container h3 {
    color: #fff;
    font-size: 1.5em;
    font-weight: normal;
    float: none;
    max-width: 100%;
    margin: 0 0 0.5em 0;
    padding: 1.5em 0.75em 0.5em 0.75em;
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase; }
    @media only screen and (min-width: 600px) {
      .featured_artist_selector_container h3 {
        padding: 0.75em 0.75em 0.5em 0.75em; } }
  .featured_artist_selector_container ul a:link, .featured_artist_selector_container ul a:visited {
    color: #fff; }
  .featured_artist_selector_container ul a:active, .featured_artist_selector_container ul a:hover {
    color: #fff; }
  @media only screen and (min-width: 768px) {
    .featured_artist_selector_container {
      padding: 1.2em 0; }
      .featured_artist_selector_container h3 {
        float: left;
        max-width: 30%;
        padding: 7% 0 0 3%; } }

.featured_artist_selector_container_inner {
  max-width: 100%;
  margin: 0px auto; }
  @media only screen and (min-width: 768px) {
    .featured_artist_selector_container_inner {
      max-width: 93.333333%; } }

.featured_artist_selector {
  float: none;
  max-width: 100%;
  margin: 0;
  padding: 0; }
  @media only screen and (min-width: 768px) {
    .featured_artist_selector {
      float: right; } }
  @media only screen and (min-width: 768px) {
    .featured_artist_selector {
      max-width: 70%; } }
  .featured_artist_selector li {
    position: relative;
    height: 75px; }
    @media only screen and (min-width: 768px) {
      .featured_artist_selector li {
        height: auto;
        overflow: hidden;
        margin: 0px auto; } }
    .featured_artist_selector li div {
      padding: 0;
      text-align: center; }
    .featured_artist_selector li span {
      font-family: "Source Sans Pro", sans-serif;
      font-size: 0.9em;
      position: absolute;
      text-align: center;
      margin: 0px auto;
      width: 100%;
      top: 50%;
      left: 0;
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
    .featured_artist_selector li img {
      max-width: 100%;
      display: none; }
    .featured_artist_selector li a {
      height: 75px;
      overflow: hidden;
      display: block; }
      .featured_artist_selector li a:link, .featured_artist_selector li a:visited {
        border: 1px solid #333; }
      .featured_artist_selector li a:active, .featured_artist_selector li a:hover {
        border: 1px solid #FFF699; }
  @media only screen and (min-width: 768px) {
    .featured_artist_selector h3 {
      padding: 0 0 0 0; }
    .featured_artist_selector li img {
      display: block; }
    .featured_artist_selector li div {
      padding: 0.5em;
      text-align: center; }
    .featured_artist_selector li a {
      height: 100%; } }

.artist_news {
  background-color: #161718;
  color: #fff;
  overflow: hidden; }
  .artist_news h2 {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    margin: 0 0 0.5em 0;
    padding: 0; }
    @media only screen and (min-width: 600px) {
      .artist_news h2 {
        font-size: 3em; } }
  .artist_news iframe {
    max-width: 100%; }
  .artist_news .artist_news_story header {
    border-bottom: 1px solid #9BBCCB;
    border-top: 3px solid #9BBCCB;
    padding: 0 0 1em 0;
    min-height: 7.25em; }
  .artist_news .artist_news_story h1 {
    margin: 0;
    padding: 0.5em 0 0.5em 0;
    font-size: 1.75em;
    font-weight: bold;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase; }
    .artist_news .artist_news_story h1 a:link, .artist_news .artist_news_story h1 a:visited {
      color: #fff;
      text-decoration: none; }
    .artist_news .artist_news_story h1 a:active, .artist_news .artist_news_story h1 a:hover {
      color: #fff;
      text-decoration: underline; }
  .artist_news .artist_news_story time {
    color: #a6a6a6;
    text-transform: uppercase;
    font-size: 0.8em; }
    .artist_news .artist_news_story time span {
      color: #DDD5D0; }
  .artist_news .artist_news_story p {
    color: #e8e8e8;
    font-size: 1em;
    font-family: "Source Sans Pro", sans-serif; }
    .artist_news .artist_news_story p a:link, .artist_news .artist_news_story p a:visited {
      color: #aeaeae;
      text-decoration: none; }
    .artist_news .artist_news_story p a:active, .artist_news .artist_news_story p a:hover {
      color: #aeaeae;
      text-decoration: underline; }
  .artist_news .artist_news_story img {
    margin: 1em 0;
    max-width: 100%; }

.artist_top_story {
  margin: 0 0 30px 0;
  padding-bottom: 20px;
  border-bottom: 1px dotted #333; }
  .artist_top_story img {
    max-width: 100%;
    padding: 1em 0; }
  .artist_top_story p {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2em;
    line-height: 1.4em;
    width: 100%; }
    @media only screen and (min-width: 600px) {
      .artist_top_story p {
        width: 85%; } }
  .artist_top_story .date {
    display: block;
    font-size: .9em;
    color: #888;
    margin: 0 0 0 0; }

.artist_news_top_stories {
  margin: 0;
  padding: 1em 0 0 0; }
  .artist_news_top_stories img {
    width: 100%; }
  .artist_news_top_stories p {
    width: 100%; }
  .artist_news_top_stories h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    font-size: 1.5em; }
  .artist_news_top_stories .top_story + .top_story {
    margin: 4em 0 0 0; }
  @media only screen and (min-width: 768px) {
    .artist_news_top_stories .top_story + .top_story {
      margin: 0 0 0 0; } }

.artist_news_secondary_stories {
  margin: 3em 0 0 0;
  padding: 3em 0 0 0; }
  .artist_news_secondary_stories .secondary_story header {
    border-bottom: 1px solid #9BBCCB;
    border-top: 3px solid #9BBCCB;
    padding: 0 0 1em 0; }
  .artist_news_secondary_stories .secondary_story h1 {
    margin: 0;
    padding: 0.5em 0 0.5em 0;
    font-size: 1.4em;
    font-weight: bold;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase; }
    .artist_news_secondary_stories .secondary_story h1 a:link, .artist_news_secondary_stories .secondary_story h1 a:visited {
      color: #fff;
      text-decoration: none; }
    .artist_news_secondary_stories .secondary_story h1 a:active, .artist_news_secondary_stories .secondary_story h1 a:hover {
      color: #fff;
      text-decoration: underline; }
  .artist_news_secondary_stories .secondary_story time {
    color: #a6a6a6;
    text-transform: uppercase;
    font-size: 0.7em; }
    .artist_news_secondary_stories .secondary_story time span {
      color: #ccc; }
  .artist_news_secondary_stories .secondary_story p {
    color: #e8e8e8;
    font-size: 0.9em;
    font-family: "Source Sans Pro", sans-serif; }
    .artist_news_secondary_stories .secondary_story p a:link, .artist_news_secondary_stories .secondary_story p a:visited {
      color: #aeaeae;
      text-decoration: none; }
    .artist_news_secondary_stories .secondary_story p a:active, .artist_news_secondary_stories .secondary_story p a:hover {
      color: #aeaeae;
      text-decoration: underline; }
  .artist_news_secondary_stories .secondary_story img {
    margin: 1em 0;
    max-width: 100%; }
  .artist_news_secondary_stories .secondary_story + .secondary_story {
    margin: 4em 0 0 0; }
  @media only screen and (min-width: 768px) {
    .artist_news_secondary_stories .secondary_story + .secondary_story {
      margin: 0 0 3em 0; } }

.previous_artist_news {
  text-transform: uppercase;
  text-align: center;
  margin: 4em auto; }
  .previous_artist_news a {
    text-decoration: none;
    font-size: 100%;
    font-weight: normal;
    color: #fff;
    border: 1px solid #FFF699;
    padding: 0.75em 1.8em;
    display: inline-block;
    overflow: hidden;
    transition: all 0.4s ease 0s;
    cursor: pointer; }
    .previous_artist_news a:active, .previous_artist_news a:hover {
      color: #000;
      border: 1px solid #FFF699;
      background: #FFF699; }

.artist_story_archives {
  margin: 3em 0 0 0;
  padding: 3em 0 0 0; }
  .artist_story_archives h2 {
    display: block;
    margin: 3em 0 2em 0; }
  .artist_story_archives .archive_story header {
    padding: 0 0 1em 0; }
  .artist_story_archives .archive_story h1 {
    margin: 0;
    padding: 0.5em 0 0.5em 0;
    font-size: 1em;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif; }
    .artist_story_archives .archive_story h1 a:link, .artist_story_archives .archive_story h1 a:visited {
      color: #fff;
      text-decoration: none; }
    .artist_story_archives .archive_story h1 a:active, .artist_story_archives .archive_story h1 a:hover {
      color: #fff;
      text-decoration: underline; }
  .artist_story_archives .archive_story time {
    color: #a6a6a6;
    text-transform: uppercase;
    font-size: 0.7em; }
    .artist_story_archives .archive_story time span {
      color: #ccc; }
  .artist_story_archives .archive_story p {
    color: #e8e8e8;
    font-size: 0.9em;
    font-family: "Source Sans Pro", sans-serif; }
    .artist_story_archives .archive_story p a:link, .artist_story_archives .archive_story p a:visited {
      color: #aeaeae;
      text-decoration: none; }
    .artist_story_archives .archive_story p a:active, .artist_story_archives .archive_story p a:hover {
      color: #aeaeae;
      text-decoration: underline; }
  .artist_story_archives .archive_story img {
    margin: 1em 0;
    max-width: 100%; }
  .artist_story_archives .archive_story + .archive_story {
    margin: 1.5em 0 0 0; }
  @media only screen and (min-width: 768px) {
    .artist_story_archives {
      margin: 0 0 0 0; }
      .artist_story_archives .archive_story + .archive_story {
        margin: 0 0 3em 0; } }

.inner_news_story {
  margin: 0;
  width: 100%; }

.back_to_artists {
  color: #fff;
  display: block;
  border: 1px solid #FFF699;
  background-color: transparent;
  padding: 1em 0.75em;
  text-transform: uppercase;
  font-size: 0.8em;
  margin: 2em auto 0 auto; }
  .back_to_artists:hover {
    color: #1E1D1D;
    background-color: #FFF699;
    border: 1px solid #FFF699; }
  .back_to_artists a {
    display: block;
    text-decoration: none; }
    .back_to_artists a:link, .back_to_artists a:visited {
      color: #fff; }
    .back_to_artists a:active, .back_to_artists a:hover {
      color: #1E1D1D; }

.international_artists {
  background: url(/imgs/artists/bg_international_link.jpg) #000 top no-repeat;
  padding: 2em 0; }
  .international_artists h2 {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    padding: 0 0 0 0;
    margin: 0 0 0 0; }
    @media only screen and (min-width: 600px) {
      .international_artists h2 {
        font-size: 3em; } }
  .international_artists p {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.1em; }
  .international_artists .ghost_button {
    text-transform: uppercase;
    text-align: center;
    margin: 4em auto; }
    .international_artists .ghost_button a {
      text-decoration: none;
      font-size: 100%;
      font-weight: normal;
      color: #fff;
      border: 1px solid #FFF699;
      padding: 0.75em 1.8em;
      display: inline-block;
      overflow: hidden;
      transition: all 0.4s ease 0s;
      cursor: pointer; }
      .international_artists .ghost_button a:active, .international_artists .ghost_button a:hover {
        color: #000;
        border: 1px solid #FFF699;
        background: #FFF699; }

.signature_artists {
  background-color: #3f3f3f;
  color: #ccc; }
  .signature_artists a:link, .signature_artists a:visited {
    color: red; }
  .signature_artists a:active, .signature_artists a:hover {
    color: orange; }
  .signature_artists h2 {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    margin: 0 0 1em 0;
    padding: 0; }
    @media only screen and (min-width: 600px) {
      .signature_artists h2 {
        font-size: 3em; } }
  .signature_artists h3 {
    font-size: 1.25em;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif;
    margin: 0 0 0.5em 0;
    padding: 0; }
    .signature_artists h3 a:link, .signature_artists h3 a:visited {
      color: #fff;
      text-decoration: none; }
    .signature_artists h3 a:active, .signature_artists h3 a:hover {
      color: #fff;
      text-decoration: underline; }
  .signature_artists ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .signature_artists ul img {
      max-width: 90%;
      margin: 0 0 2em 0; }

.artist_videos {
  background-color: #1E1D1D;
  overflow: auto; }
  .artist_videos h2 {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase; }
    @media only screen and (min-width: 600px) {
      .artist_videos h2 {
        font-size: 3em; } }
  .artist_videos h3 {
    color: #DDD5D0;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif; }
  .artist_videos iframe {
    max-width: 100%; }
  .artist_videos ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .artist_videos ul li div {
      max-width: 100%;
      margin: 0px auto;
      text-align: center; }
      @media only screen and (min-width: 600px) {
        .artist_videos ul li div {
          max-width: 100%; } }

.artist_playlist_link {
  text-transform: uppercase;
  text-align: center;
  margin: 4em auto; }
  .artist_playlist_link a {
    text-decoration: none;
    font-size: 100%;
    font-weight: normal;
    color: #fff;
    border: 1px solid #FFF699;
    padding: 0.75em 1.8em;
    display: inline-block;
    overflow: hidden;
    transition: all 0.4s ease 0s;
    cursor: pointer; }
    .artist_playlist_link a:active, .artist_playlist_link a:hover {
      color: #000;
      border: 1px solid #FFF699;
      background: #FFF699; }

.artist_list {
  background-color: #161718;
  color: #fff;
  overflow: hidden; }
  .artist_list h2 {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    text-align: left; }
    @media only screen and (min-width: 600px) {
      .artist_list h2 {
        font-size: 3em; } }
    @media only screen and (min-width: 600px) {
      .artist_list h2 {
        text-align: center; } }
  .artist_list p {
    color: #DDD5D0;
    font-size: 1em;
    text-align: left; }
    @media only screen and (min-width: 600px) {
      .artist_list p {
        text-align: center; } }
  .artist_list ul {
    margin: 0;
    padding: 0; }
    .artist_list ul li {
      list-style-type: none;
      color: #DDD5D0;
      font-size: 0.9em;
      margin-top: 0.9em; }
      @media only screen and (min-width: 600px) {
        .artist_list ul li {
          margin-top: 1.1em; } }
    .artist_list ul div {
      padding: 0 0.75em 0 0; }
    .artist_list ul span {
      color: #fff; }

.show_artist_list {
  color: #fff;
  display: block;
  border: 1px solid #FFF699;
  background-color: transparent;
  padding: 1em 0.75em;
  text-transform: uppercase;
  font-size: 0.8em;
  margin: 2em auto 0 auto; }
  .show_artist_list:hover {
    color: #1E1D1D;
    background-color: #FFF699;
    border: 1px solid #FFF699; }
  .show_artist_list a {
    display: block;
    text-decoration: none; }
    .show_artist_list a:link, .show_artist_list a:visited {
      color: #fff; }
    .show_artist_list a:active, .show_artist_list a:hover {
      color: #1E1D1D; }

.artist_list_by_name {
  margin: 2em 0;
  display: none; }

.international_artist_list_by_name {
  margin: 2em 0;
  display: block; }

.new_artists {
  background-color: #161718;
  color: #fff;
  overflow: hidden;
  overflow: hidden;
  margin: 3em 0 0 0; }
  .new_artists h3 {
    color: #fff;
    font-size: 2em;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif;
    margin: 0 0 0.5em 0;
    padding: 0; }
  .new_artists h4 {
    font-family: "Source Sans Pro", sans-serif;
    color: #fff;
    font-weight: normal;
    font-size: 1.4em;
    margin: 0 0 0.5em 0; }
  .new_artists p {
    text-align: left; }
  .new_artists img {
    max-width: 100%; }

.new_artist_list {
  margin: 0;
  padding: 0; }
  .new_artist_list li {
    margin: 1.5em 0 0 0; }
  .new_artist_list div {
    width: 90%;
    padding: 0;
    margin: 0; }
  .new_artist_list h3 span {
    display: block; }

.news_story_inner {
  width: 93.333333%;
  margin: 0px auto; }

.story_header {
  margin: 0 0 1em 0; }
  .story_header small {
    color: #ccc;
    font-size: 1em; }

.become_an_artist {
  text-align: center;
  font-size: 1.2em;
  margin: 5em auto; }
  .become_an_artist a:link, .become_an_artist a:visited {
    color: #aeaeae;
    text-decoration: none; }
  .become_an_artist a:active, .become_an_artist a:hover {
    color: #aeaeae;
    text-decoration: underline; }
  .become_an_artist p {
    text-align: center; }
  .become_an_artist span {
    display: block;
    margin: 1em auto;
    text-align: center;
    font-size: 0.7em; }

.story_body {
  color: #fff;
  padding: 1em 0 0 0; }
  .story_body img {
    max-width: 100%; }
  .story_body iframe {
    max-width: 100%; }

.artist_inquiry {
  background-color: #3f3f3f;
  color: #ccc; }
  .artist_inquiry a:link, .artist_inquiry a:visited {
    color: red; }
  .artist_inquiry a:active, .artist_inquiry a:hover {
    color: orange; }
  .artist_inquiry h3 {
    color: #fff;
    font-size: 2em;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif;
    text-align: left; }
  .artist_inquiry p {
    color: #fff;
    text-align: left; }
  @media only screen and (min-width: 600px) {
    .artist_inquiry h3 {
      text-align: center; }
    .artist_inquiry p {
      text-align: center; } }

.artist_quote {
  background-color: #121212;
  padding: 3em 0;
  text-align: center; }
  .artist_quote .inner {
    background-color: #1f1f1f;
    max-width: 80%;
    margin: 0px auto;
    padding: 1.5em 1em; }
  .artist_quote blockquote {
    color: #fefefe;
    margin: 0px auto;
    width: 90%;
    font-size: 1.15em;
    line-height: 1.3em;
    font-style: italic; }
    .artist_quote blockquote span {
      font-weight: bold;
      color: #ccc;
      font-style: normal; }
  @media only screen and (min-width: 600px) {
    .artist_quote blockquote {
      width: 80%;
      font-size: 1.2em;
      line-height: 1.5em;
      font-style: italic; } }
  .artist_quote p {
    color: #fff;
    margin: 1.25em auto 0 auto;
    width: 90%;
    font-size: 1.15em; }
  @media only screen and (min-width: 600px) {
    .artist_quote p {
      margin: 1.25em auto 0 auto;
      width: 80%;
      font-size: 1.5em; } }

.videos {
  background-color: blue;
  overflow: auto; }
  .videos .inner {
    margin: 6em 0; }
  .videos iframe {
    max-width: 100%; }

.video_wrapper {
  position: relative;
  overflow: hidden;
  margin: 0px auto;
  width: 90%; }
  @media only screen and (min-width: 600px) {
    .video_wrapper {
      width: 70%; } }
  .video_wrapper .iframe {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%; }

.artist_interview {
  background-color: #121212;
  color: #fff;
  overflow: auto; }
  .artist_interview h3 {
    border-bottom: 1px solid #9BBCCB;
    padding: 0 0 0.5em 0;
    font-size: 3.25em;
    width: 85%;
    margin: 0px auto 0.75em auto; }
    @media only screen and (min-width: 600px) {
      .artist_interview h3 {
        width: 70%; } }
  .artist_interview img {
    max-width: 100%;
    margin: 3em 0; }
  .artist_interview img:last-of-type {
    margin: 3em 0 0 0; }
  .artist_interview p {
    margin: 0px auto;
    width: 85%;
    line-height: 1.45em;
    font-family: "Source Sans Pro", sans-serif; }
    @media only screen and (min-width: 600px) {
      .artist_interview p {
        width: 70%; } }
    .artist_interview p + p {
      margin-top: 1.5em; }
    .artist_interview p + h3 {
      margin: 2em auto 0.75em auto; }
    .artist_interview p a:link, .artist_interview p a:visited {
      color: #aeaeae;
      text-decoration: none; }
    .artist_interview p a:active, .artist_interview p a:hover {
      color: #aeaeae;
      text-decoration: underline; }
  .artist_interview .small_text {
    font-size: 0.8em;
    font-style: italic; }
  .artist_interview .inner {
    margin: 0px auto;
    padding: 3em 0 0 0; }
  .artist_interview .intro {
    margin: 2em auto 4em auto;
    padding: 0;
    font-style: italic; }
  .artist_interview .question {
    margin: 3em auto 0 auto;
    padding: 0;
    font-weight: bold;
    font-size: 1em;
    width: 85%;
    color: #fff; }
    @media only screen and (min-width: 600px) {
      .artist_interview .question {
        width: 70%;
        font-size: 1em; } }
  .artist_interview .answer {
    color: #fff;
    margin: 1em auto;
    padding: 0;
    font-size: 1em;
    width: 85%; }
    @media only screen and (min-width: 600px) {
      .artist_interview .answer {
        font-size: 1.1em;
        width: 70%; } }
  .artist_interview iframe {
    max-width: 100%; }

.artist_links {
  margin: 0px auto;
  padding: 4em 0 5em 0;
  background-color: #121212;
  text-align: center; }
  .artist_links .inner {
    padding: 0;
    overflow: hidden;
    padding: 1em;
    width: 85%;
    margin: 2em auto;
    background-color: #1E1D1D; }
    @media only screen and (min-width: 768px) {
      .artist_links .inner {
        width: 70%; } }
  .artist_links p {
    font-size: 1.2em;
    color: #1E1D1D;
    background-color: #FFF699;
    width: 65%;
    margin: 0px auto;
    padding: 1em; }
    @media only screen and (min-width: 768px) {
      .artist_links p {
        width: 45%;
        padding: 1em; } }
  .artist_links ul {
    list-style-type: none;
    margin: 2em 0;
    padding: 0; }
    .artist_links ul li {
      margin: 1.5em 0 0 0; }
  .artist_links a:link, .artist_links a:visited {
    text-decoration: none;
    color: #ccc; }
  .artist_links a:active, .artist_links a:hover {
    text-decoration: underline;
    color: #cfcfcf; }

/* News Story - Single Page -----------------*/
.single_news_story {
  background-color: #1E1D1D;
  overflow: auto;
  padding: 2em 1em 3em 1em; }
  @media only screen and (min-width: 768px) {
    .single_news_story {
      display: grid;
      grid-template-columns: 68% 32%; } }
  .single_news_story header {
    border-bottom: 1px solid #9BBCCB;
    padding: 0 0 1em 0; }
  .single_news_story h1 {
    color: #fff;
    margin: 0;
    padding: 0.5em 0 0.5em 0;
    font-size: 1.75em;
    font-weight: bold;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase; }
    .single_news_story h1 a:link, .single_news_story h1 a:visited {
      color: #fff;
      text-decoration: none; }
    .single_news_story h1 a:active, .single_news_story h1 a:hover {
      color: #fff;
      text-decoration: underline; }
  .single_news_story time {
    color: #a6a6a6;
    text-transform: uppercase;
    font-size: 0.8em; }
    .single_news_story time span {
      color: #DDD5D0; }
  .single_news_story p {
    color: #e8e8e8;
    font-size: 1em;
    font-family: "Source Sans Pro", sans-serif;
    line-height: 1.5em; }
    .single_news_story p a:link, .single_news_story p a:visited {
      color: #aeaeae;
      text-decoration: none; }
    .single_news_story p a:active, .single_news_story p a:hover {
      color: #aeaeae;
      text-decoration: underline; }
  .single_news_story img {
    margin: 0px auto;
    max-width: 100%; }
  .single_news_story .story_container .inner {
    max-width: 100%; }
    @media only screen and (min-width: 600px) {
      .single_news_story .story_container .inner {
        max-width: 90%; } }

.other_news {
  overflow: hidden;
  background-color: #1E1D1D;
  padding: 0; }
  @media only screen and (min-width: 768px) {
    .other_news {
      padding: 0 1em 0 2em; } }
  .other_news h2 {
    color: #fff;
    font-weight: normal; }
  .other_news ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .other_news ul li + li {
      margin: 2em 0 0 0; }
  .other_news a:link, .other_news a:visited {
    color: #fff;
    text-decoration: none; }
  .other_news a:active, .other_news a:hover {
    color: #fff;
    text-decoration: underline; }
  @media only screen and (min-width: 768px) {
    .other_news .inner {
      padding: 0 0 0 0;
      margin: 0 0 0 0; } }
  .other_news time {
    color: #a6a6a6;
    text-transform: uppercase;
    font-size: 0.8em; }
    .other_news time span {
      color: #DDD5D0;
      display: block; }

/* Album Release ---------------------------------------*/
.album_release {
  overflow: hidden;
  background-color: red; }
  .album_release .artist_name {
    margin: 0;
    padding: 0; }
  .album_release .album_name {
    margin: 0;
    padding: 0; }
  .album_release .release_date {
    margin: 0;
    padding: 0; }
  .album_release p img {
    max-width: 100%; }

.album_release_inner {
  width: 93.333333%;
  margin: 0px auto; }

.album_details {
  width: 100%;
  float: none; }
  @media only screen and (min-width: 768px) {
    .album_details {
      width: 50%;
      float: left; } }

.album_art {
  float: none;
  width: 100%; }
  .album_art img {
    max-width: 100%;
    margin: 0;
    padding: 0 0 0 0; }
  @media only screen and (min-width: 768px) {
    .album_art {
      float: right;
      width: 50%; }
      .album_art img {
        max-width: 95%;
        margin: 0;
        padding: 0 0 1em 5%; } }

/* Blog Grid Areas */
.blog_header_container_2019 {
  grid-area: blog_header_container; }

.blog_posts_index_2019 {
  grid-area: blog_posts_index; }

.blog_categories_2019 {
  grid-area: blog_category_listing; }

.blog_container_2019 {
  color: #fff;
  background-color: #161718;
  display: grid;
  margin: 0px auto;
  width: 100%;
  grid-template-areas: "blog_header_container" "blog_posts_index" "blog_category_listing";
  grid-gap: 0;
  grid-template-columns: 100%; }
  @media only screen and (min-width: 768px) {
    .blog_container_2019 {
      grid-template-areas: "blog_header_container blog_header_container" "blog_posts_index blog_category_listing";
      grid-template-columns: 70% 30%; } }
  .blog_container_2019 #blogheader {
    display: none;
    padding-bottom: 50px; }
    @media only screen and (min-width: 600px) {
      .blog_container_2019 #blogheader {
        display: block; } }
    .blog_container_2019 #blogheader img {
      max-width: 100%; }
  .blog_container_2019 #blogheadersmall {
    display: block;
    padding-bottom: 50px; }
    @media only screen and (min-width: 600px) {
      .blog_container_2019 #blogheadersmall {
        display: none; } }
    .blog_container_2019 #blogheadersmall img {
      max-width: 100%; }

.blog_posts_index_2019 {
  margin: 0px auto;
  width: 95%; }
  .blog_posts_index_2019 article + article {
    border-top: 1px dotted #777;
    margin-top: 15px;
    padding-top: 35px; }
    @media only screen and (min-width: 768px) {
      .blog_posts_index_2019 article + article {
        margin-top: 30px;
        padding-top: 70px; } }
  .blog_posts_index_2019 article img {
    max-width: 100%; }
  .blog_posts_index_2019 header {
    margin: 0 0 26px 0; }
  .blog_posts_index_2019 h1 {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1em;
    text-transform: uppercase;
    margin: 0 0 0 0;
    padding: 0 0 0 0; }
    @media only screen and (min-width: 768px) {
      .blog_posts_index_2019 h1 {
        font-size: 2.25em;
        line-height: 1em; } }
    .blog_posts_index_2019 h1 a:link, .blog_posts_index_2019 h1 a:visited {
      color: #fff;
      text-decoration: none; }
    .blog_posts_index_2019 h1 a:active, .blog_posts_index_2019 h1 a:hover {
      color: #fff;
      text-decoration: underline; }

.datemeta {
  color: #fff;
  font-size: 1em;
  margin: 10px 0 0 0; }

.categorymeta {
  color: #ccc;
  text-transform: uppercase;
  font-size: 0.8em; }

.datemeta a:link, .datemeta a:visited, .blogpostfooter a:link, .blogpostfooter a:visited, .categorymeta a:link, .categorymeta a:visited {
  color: #009ADA;
  text-decoration: none; }

.datemeta a:active, .datemeta a:hover, .blogpostfooter a:active, .blogpostfooter a:hover, .categorymeta a:link, .categorymeta a:visited {
  color: #009ADA;
  text-decoration: underline; }

.blogbody p {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  line-height: 1.3em;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .blogbody p {
      width: 90%; } }

.blog_categories_2019 {
  border-top: 1px dotted #666;
  width: 95%;
  margin: 16px auto 32px auto; }
  @media only screen and (min-width: 768px) {
    .blog_categories_2019 {
      border-top: none;
      margin: 0px auto; } }
  .blog_categories_2019 .nav_categories {
    list-style-type: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2em; }
    .blog_categories_2019 .nav_categories a:link, .blog_categories_2019 .nav_categories a:visited {
      color: #fff;
      text-decoration: none; }
    .blog_categories_2019 .nav_categories a:active, .blog_categories_2019 .nav_categories a:hover {
      color: #fff;
      text-decoration: underline; }
    .blog_categories_2019 .nav_categories li {
      margin: 0 0 10px 0; }
      .blog_categories_2019 .nav_categories li a.active {
        background-color: #009ADA;
        display: block;
        margin: 16px 0;
        padding: 6px;
        text-transform: uppercase; }
    .blog_categories_2019 .nav_categories ul {
      margin: 10px 0 10px 10px;
      padding: 0 0 0 0;
      list-style-type: none;
      font-weight: normal;
      font-size: 0.8em; }
      .blog_categories_2019 .nav_categories ul li {
        margin: 0 0 0 0;
        padding: 0 0 0 0; }
  .blog_categories_2019 .view_all_categories {
    text-transform: uppercase; }
    .blog_categories_2019 .view_all_categories a:link, .blog_categories_2019 .view_all_categories a:visited {
      color: #fff;
      text-decoration: none; }
    .blog_categories_2019 .view_all_categories a:active, .blog_categories_2019 .view_all_categories a:hover {
      color: #fff;
      text-decoration: underline; }

.blogrsslink {
  text-align: right;
  padding: 15px 15px 0 0; }
  .blogrsslink img {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    padding-bottom: 7px; }
  .blogrsslink span {
    font-size: 17px;
    padding: 0 5px 0 0;
    line-height: 12px; }

.blogrsslink a:link, .blogrsslink a:visited {
  color: #717171;
  text-decoration: none; }

.blogrsslink a:active, .blogrsslink a:hover {
  color: #f09c02;
  text-decoration: none; }

.back_to_blog_index {
  display: flex;
  font-family: "Source Sans Pro", sans-serif;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  text-transform: uppercase;
  background: url(/imgs/back_to_blog_home.jpg) top no-repeat #000;
  height: 70px; }
  @media only screen and (min-width: 768px) {
    .back_to_blog_index {
      height: 90px;
      text-align: left; } }
  .back_to_blog_index a {
    padding: 0 0 0 20px; }
    .back_to_blog_index a:link, .back_to_blog_index a:visited {
      color: #fff;
      text-decoration: none; }
    .back_to_blog_index a:active, .back_to_blog_index a:hover {
      color: #fff;
      text-decoration: underline; }

.blog_header_container_2019 {
  grid-area: blog_header_container; }

.blog_post_body_2019 {
  grid-area: blog_post_body; }

.blog_comments_2019 {
  grid-area: blog_comments; }

.blog_header_container_2019 {
  color: #fff; }

.blog_single_story_container_2019 {
  display: grid;
  background-color: #161718;
  margin: 0px auto;
  width: 100%;
  grid-template-areas: "blog_header_container" "blog_post_body" "blog_comments";
  grid-gap: 0;
  grid-template-columns: 100%; }
  .blog_single_story_container_2019 header {
    margin: 0px auto;
    padding: 4em 0 2em 0;
    max-width: 85%; }
    .blog_single_story_container_2019 header h1 {
      color: #fff;
      font-family: "Source Sans Pro", sans-serif;
      font-weight: bold;
      font-size: 2.25em;
      line-height: 1em;
      text-transform: uppercase;
      margin: 0 0 0 0;
      padding: 0 0 0 0; }
      @media only screen and (min-width: 768px) {
        .blog_single_story_container_2019 header h1 {
          font-size: 2.75em;
          line-height: 1em; } }
  .blog_single_story_container_2019 .filed_under {
    color: #ccc;
    font-size: 1em; }
    .blog_single_story_container_2019 .filed_under a:link, .blog_single_story_container_2019 .filed_under a:visited {
      color: #ccc;
      text-decoration: underline; }
    .blog_single_story_container_2019 .filed_under a:active, .blog_single_story_container_2019 .filed_under a:hover {
      color: #ccc;
      text-decoration: none; }

.blog_hero {
  display: block;
  margin: 0 auto 4em 0; }
  @media only screen and (min-width: 600px) {
    .blog_hero {
      margin: 0 auto 4em 0; } }
  .blog_hero img {
    border: 0;
    display: block;
    max-width: 100%; }

.blog_post_body_2019 p {
  color: #fff;
  max-width: 700px;
  margin: 0px auto;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.5em; }
  @media only screen and (min-width: 1030px) {
    .blog_post_body_2019 p {
      width: 100%; } }
  .blog_post_body_2019 p + p {
    margin: 1.4em auto 0 auto; }
  .blog_post_body_2019 p a:link, .blog_post_body_2019 p a:visited {
    color: #ccc;
    text-decoration: underline; }
  .blog_post_body_2019 p a:active, .blog_post_body_2019 p a:hover {
    color: #ccc;
    text-decoration: none; }
.blog_post_body_2019 iframe {
  max-width: 100%; }
.blog_post_body_2019 blockquote {
  border-bottom: 1px solid #009ADA;
  border-top: 1px solid #009ADA;
  color: #fff;
  font-size: 1.1em;
  font-style: italic;
  line-height: 1.6em;
  margin: 2em auto;
  padding-bottom: 1.5em;
  padding-top: 1.5em;
  max-width: 700px; }
  .blog_post_body_2019 blockquote .twitter-tweet {
    color: #fff; }
  .blog_post_body_2019 blockquote a:link, .blog_post_body_2019 blockquote a:visited {
    color: #ccc;
    text-decoration: underline; }
  .blog_post_body_2019 blockquote a:active, .blog_post_body_2019 blockquote a:hover {
    color: #ccc;
    text-decoration: none; }
  .blog_post_body_2019 blockquote strong {
    font-style: normal; }
.blog_post_body_2019 .twitter-tweet {
  margin: 4em auto;
  width: 100%; }
.blog_post_body_2019 .instagram-media {
  margin: 4em auto !important; }
.blog_post_body_2019 .photo_credit {
  color: #ccc;
  font-size: 0.6em;
  font-style: italic;
  padding: 0 0 0 0; }
.blog_post_body_2019 h2 {
  font-family: "Source Sans Pro", sans-serif;
  color: #fff;
  font-size: 2em;
  text-align: left;
  padding: 2em 0 0.3em 0;
  margin: 0px auto;
  max-width: 700px; }
  .blog_post_body_2019 h2 a:link, .blog_post_body_2019 h2 a:visited {
    color: #ccc;
    text-decoration: underline; }
  .blog_post_body_2019 h2 a:active, .blog_post_body_2019 h2 a:hover {
    color: #ccc;
    text-decoration: none; }
  @media only screen and (min-width: 600px) {
    .blog_post_body_2019 h2 {
      font-size: 2.5em; } }
  .blog_post_body_2019 h2.centered {
    text-align: centered; }
.blog_post_body_2019 p + h2 {
  padding: 2em 0 0.3em 0; }
  @media only screen and (min-width: 600px) {
    .blog_post_body_2019 p + h2 {
      padding: 2em 0 0.3em 0; } }
.blog_post_body_2019 ul + h2 {
  padding: 2em 0 0 0; }
  @media only screen and (min-width: 600px) {
    .blog_post_body_2019 ul + h2 {
      padding: 3em 0 0 0; } }
.blog_post_body_2019 h3 {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5em;
  margin: 0px auto;
  max-width: 700px; }
  @media only screen and (min-width: 600px) {
    .blog_post_body_2019 h3 {
      font-size: 2.0em;
      padding: 2em 0 0 0; } }
  .blog_post_body_2019 h3 a:link, .blog_post_body_2019 h3 a:visited {
    color: #ccc;
    text-decoration: underline; }
  .blog_post_body_2019 h3 a:active, .blog_post_body_2019 h3 a:hover {
    color: #ccc;
    text-decoration: none; }
.blog_post_body_2019 h2 + h3 {
  padding: 0 0 0 0; }
  @media only screen and (min-width: 600px) {
    .blog_post_body_2019 h2 + h3 {
      padding: 0 0 0 0; } }
.blog_post_body_2019 ul + h3 {
  padding: 2em 0 0 0; }
  @media only screen and (min-width: 600px) {
    .blog_post_body_2019 ul + h3 {
      padding: 3em 0 1em 0; } }
.blog_post_body_2019 .full_column_image + h3 {
  padding: 0em 0 0 0; }
  @media only screen and (min-width: 600px) {
    .blog_post_body_2019 .full_column_image + h3 {
      padding: 0em 0 1em 0; } }
.blog_post_body_2019 .full_column_image {
  padding: 3em 0;
  max-width: 700px;
  margin: 0px auto; }
  .blog_post_body_2019 .full_column_image img {
    width: 100%;
    margin: 0px auto;
    display: block; }
  .blog_post_body_2019 .full_column_image + .full_column_image {
    padding: 0.25em 0; }
.blog_post_body_2019 .full_width_image img {
  padding: 3em 0;
  width: 100%; }
.blog_post_body_2019 .full_width_image + .full_width_image {
  padding: 0 0 0 0; }
  .blog_post_body_2019 .full_width_image + .full_width_image img {
    padding: 0 0 0 0; }
.blog_post_body_2019 .full_width_image + p {
  padding: 2em 0 0 0; }
.blog_post_body_2019 .photo_grid {
  display: block;
  padding: 3em 0; }
  .blog_post_body_2019 .photo_grid img {
    padding: 0 0;
    max-width: 90%; }
    @media only screen and (min-width: 768px) {
      .blog_post_body_2019 .photo_grid img {
        padding: 2% 5%;
        max-width: 95%; } }
.blog_post_body_2019 .video_container_full_width {
  clear: both;
  float: none;
  height: 0;
  margin: 0px auto;
  padding-bottom: 56.25%;
  padding-top: 0;
  position: relative;
  width: 100%; }
  .blog_post_body_2019 .video_container_full_width iframe {
    width: 100%; }
.blog_post_body_2019 .video_container_column_width {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  width: 71%;
  margin: 2em auto; }
  .blog_post_body_2019 .video_container_column_width iframe, .blog_post_body_2019 .video_container_column_width object, .blog_post_body_2019 .video_container_column_width embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
.blog_post_body_2019 .bullet_list {
  font-family: "Source Sans Pro", sans-serif;
  padding: 2em 0 2em 1em;
  margin: 0px auto;
  max-width: 700px;
  color: #fff; }
  @media only screen and (min-width: 600px) {
    .blog_post_body_2019 .bullet_list {
      padding: 1.5em 0 1.5em 3em; } }
  .blog_post_body_2019 .bullet_list li {
    font-size: 0.9em; }
    @media only screen and (min-width: 600px) {
      .blog_post_body_2019 .bullet_list li {
        font-size: 0.9em; } }
    .blog_post_body_2019 .bullet_list li + li {
      margin: 1em 0 0 0; }
.blog_post_body_2019 .columns {
  max-width: 700px;
  margin: 0px auto; }
.blog_post_body_2019 .dealer {
  margin: 0px auto 2em auto; }
  .blog_post_body_2019 .dealer .dealer_name {
    color: #fff;
    font-size: 1.4em; }
  .blog_post_body_2019 .dealer .dealer_website a:link, .blog_post_body_2019 .dealer .dealer_website a:visited {
    color: #ccc;
    text-decoration: underline; }
  .blog_post_body_2019 .dealer .dealer_website a:active, .blog_post_body_2019 .dealer .dealer_website a:hover {
    color: #ccc;
    text-decoration: none; }
  .blog_post_body_2019 .dealer .dealer_location {
    color: #fff;
    width: 95%; }

.blog_cta_button {
  text-transform: uppercase;
  text-align: center;
  margin: 4em auto; }
  .blog_cta_button a {
    text-decoration: none;
    font-size: 100%;
    font-weight: normal;
    color: #fff;
    border: 1px solid #009ADA;
    padding: 0.75em 1.8em;
    display: inline-block;
    overflow: hidden;
    transition: all 0.4s ease 0s;
    cursor: pointer; }
    .blog_cta_button a:active, .blog_cta_button a:hover {
      color: #fff;
      border: 1px solid #009ADA;
      background: #009ADA; }

/* Comments - General */
#blog_comments {
  background-color: #333;
  clear: both;
  margin: 0;
  padding: 40px 0 0 0;
  position: relative; }
  @media only screen and (min-width: 600px) {
    #blog_comments {
      margin: 0px auto; } }
  #blog_comments h1 {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 17px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 32px; }

.blog_comments_inner {
  max-width: 700px;
  margin: 0px auto; }

.addcomment {
  font-size: 12px; }
  .addcomment a {
    padding: 7px; }
  .addcomment a:link, .addcomment .addcomment a:visited {
    background-color: #4f525c;
    color: #fff;
    text-decoration: none; }
  .addcomment .addcomment a:active, .addcomment .addcomment a:hover {
    background-color: #a6abc1;
    color: #fff;
    text-decoration: none; }

/* Comments - Individual Comments */
.comment-content {
  padding: 16px; }

.comment-content + .comment-content {
  padding-top: 30px;
  border-top: 1px solid #333; }

.comment-content dt {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.2em;
  padding-bottom: 12px; }
.comment-content dd {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1em; }
.comment-content p {
  color: #fff;
  display: block;
  font-size: 12px;
  line-height: 18px; }
.comment-content a:link, .comment-content .comment-content a:visited {
  color: #c1d1ee;
  text-decoration: none; }
.comment-content a:active, .comment-content .comment-content a:hover {
  color: #c1d1ee;
  text-decoration: underline; }

.comment-date {
  color: #acacac;
  display: block;
  font-size: 10px; }

/* Comment Pagination */
#comment_pagination {
  margin: 20px 0;
  font-size: 10px; }
  #comment_pagination span {
    font-size: 10px;
    text-transform: uppercase; }
  #comment_pagination strong {
    color: #fff;
    padding: 7px;
    background-color: #a6abc1; }
  #comment_pagination a {
    padding: 5px; }
  #comment_pagination a:link, #comment_pagination #comment_pagination a:visited {
    background-color: #4f525c;
    color: #fff;
    text-decoration: none; }
  #comment_pagination a:active, #comment_pagination #comment_pagination a:hover {
    background-color: #a6abc1;
    color: #fff;
    text-decoration: none; }

/* Comment Form */
#comment-form {
  color: #fff;
  width: 100%;
  border-top: 1px solid #414141;
  margin: 26px auto 0 auto;
  padding-top: 40px;
  position: relative; }
  #comment-form h1 {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2em;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 21px; }
  #comment-form h2 {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 21px; }
  #comment-form label {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 14px; }
  #comment-form input {
    border: 1px solid #000;
    font-size: 13px;
    padding: 5px;
    color: #000; }
  #comment-form p + p {
    margin-top: 20px; }
  #comment-form fieldset {
    border: none; }
  #comment-form textarea {
    color: #000; }

#blogpagination {
  display: block;
  margin: 60px 0 160px 0; }
  #blogpagination ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
  #blogpagination ul li {
    font-size: 15px;
    line-height: 31px;
    letter-spacing: 5px; }
  #blogpagination a {
    display: block;
    text-transform: uppercase;
    height: 31px; }
  #blogpagination a:link, #blogpagination a:visited {
    color: #999;
    text-decoration: none; }
  #blogpagination a:active, #blogpagination a:hover {
    color: #ccc;
    text-decoration: underline; }

.paginationprevious {
  background: url(/imgs/blog/previous_bird.png) no-repeat left center;
  float: left;
  padding-left: 30px;
  height: 31px; }

.paginationnext {
  background: url(/imgs/blog/next_bird.png) no-repeat right center;
  float: right;
  padding-right: 30px;
  height: 31px; }

/* Miscellaneous */
.noresults {
  color: #fff;
  font-weight: normal;
  font-size: 25px;
  margin-top: 40px; }

/* www.prsguitars.com/brazilian */
h1, h2, h3, h4, h5 {
  font-weight: normal; }

#brazilian_overview {
  background: url(/brazilian/bg_brazilian3.jpg) top right no-repeat #060302;
  color: #fff;
  margin: 0px auto;
  padding: 60px 0 30px 30px; }
  #brazilian_overview iframe {
    max-width: 100%; }

#brazilian_overview a:link, #brazilian_overview a:visited {
  color: #A9BDD7;
  text-decoration: none; }

#brazilian_overview a:active, #brazilian_overview a:hover {
  color: #A9BDD7;
  text-decoration: underline; }

#brazilian_overview h1 {
  font-size: 53px;
  margin: 0 0 30px 0;
  font-family: Times, serif; }

#brazilian_overview p {
  font-family: GillSansRegular,"Gill Sans MT","Gill Sans", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }

.brazilian_intro {
  font-size: 20px;
  line-height: 23px;
  width: 70%; }

.brazilian_intro + p {
  margin-top: 23px; }

.brazilian_availablity_container {
  margin: 50px 0 30px 0;
  overflow: auto; }

.brazilian_availablity_container h2 {
  font-size: 29px;
  margin-bottom: 17px; }

.brazilian_availablity_container h3 {
  font-size: 25px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-family: GillSansRegular,"Gill Sans MT","Gill Sans", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }

.brazilian_availablity_container h2 span {
  font-size: 16px;
  font-style: italic; }

.brazilian_series {
  margin: 0 0 50px 0;
  width: 95%;
  border-bottom: 1px solid #333;
  padding-bottom: 20px; }

.brazilian_series p {
  color: #ccc;
  font-size: 14px;
  line-height: 17px; }

.brazilian_series p + p {
  margin-top: 14px; }

.brazilian_link a {
  display: block;
  font-size: 18px;
  margin-top: 30px;
  font-style: italic; }

.brazilian_story {
  width: 75%; }

.brazilian_story h3 {
  font-size: 28px;
  margin-bottom: 20px; }

.brazilian_story p {
  color: #ccc;
  line-height: 19px; }

.brazilian_story p + p {
  margin-top: 19px; }

.brazilian_note {
  font-size: 12px;
  margin-top: 40px;
  width: 95%;
  color: #ccc; }

.brazilian_note p + p {
  margin-top: 14px; }

.careers img, .careers_index img {
  max-width: 100%; }

.current_openings {
  margin: 4em 0; }

.benefits {
  margin-top: 2.5em; }

/* careers/opening */
.employment_container {
  background-color: #141414;
  overflow: hidden; }

.employment_container_inner {
  max-width: 90%;
  margin: 3em auto; }

.job_description a {
  color: #A9BDD7; }
  .job_description a:link, .job_description a:visited {
    text-decoration: none; }
  .job_description a:active, .job_description a:hover {
    text-decoration: underline; }
.job_description h1 {
  color: #fff;
  margin: 0 0 1em 0;
  padding: 0;
  padding: 0 1em 0 0; }
.job_description p {
  color: #fff;
  padding: 0 1.25em 0 0;
  font-size: 1em; }
  .job_description p + p {
    margin-top: 1.5em; }
    @media only screen and (min-width: 600px) {
      .job_description p + p {
        margin-top: 2em; } }
.job_description ul {
  font-size: 0.85em;
  line-height: 1.2em;
  color: #fff;
  margin: 0;
  padding: 0 0 0 0.5em; }
  .job_description ul li {
    margin: 0;
    padding: 0; }
  .job_description ul li + li {
    margin: 1.25em 0 0 0; }
@media only screen and (min-width: 600px) {
  .job_description .inner {
    padding: 0 2em 0 0; } }

.employment_aside {
  border-top: 1px solid #333;
  padding: 2em 0 0 0;
  margin: 1em 0 0 0; }
  @media only screen and (min-width: 600px) {
    .employment_aside {
      border-top: none;
      padding: 0;
      margin: 0; } }
  .employment_aside h2 {
    color: #fff;
    margin: 0;
    padding: 0; }
  .employment_aside .current_openings {
    margin: 2em 0 1em 0;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.15em;
    display: block; }
  .employment_aside ul {
    margin: 2em 0;
    padding: 0;
    list-style-type: none; }
    .employment_aside ul li + li {
      margin-top: 1em; }
    .employment_aside ul a {
      color: #A9BDD7; }
      .employment_aside ul a:link, .employment_aside ul a:visited {
        text-decoration: none; }
      .employment_aside ul a:active, .employment_aside ul a:hover {
        text-decoration: underline; }

@media only screen and (min-width: 600px) {
  .current_openings_index {
    margin: 4em 0; } }

.workatprs {
  color: #fff;
  font-size: 0.8em;
  line-height: 1.4em; }

.china_intro {
  background: url(/china/bg.jpg) top no-repeat #000;
  padding: 40px 0 50px 0;
  text-align: center; }
  .china_intro h1 {
    font-size: 1.5em;
    margin: 0;
    color: #fff; }
  .china_intro p {
    color: #fff;
    line-height: 1.3em; }
  .china_intro a:link, .china_intro a:visited {
    color: #999;
    text-decoration: none; }
  .china_intro a:active, .china_intro a:hover {
    color: #ccc;
    text-decoration: underline; }
  .china_intro iframe {
    display: block;
    max-width: 85%;
    text-align: center;
    margin: 20px auto 0 auto; }

.china_intro_inner {
  padding: 0; }

.china_models_container {
  background-color: #141414;
  overflow: hidden;
  padding: 50px 5%;
  margin: 0px auto; }

.china_model {
  padding: 0 3%; }
  .china_model h2 {
    color: #fff; }
  .china_model p {
    color: #fff;
    line-height: 1.4em; }
  .china_model img {
    max-width: 100%; }

.description {
  font-size: 1.15em; }

.specs ul {
  margin: 40px 0;
  padding: 0 0 0 1.1em; }
  .specs ul li {
    color: #fff; }
  .specs ul li + li {
    margin-top: 1em; }

.china_model_options {
  max-width: 85%;
  margin: 0px auto; }
  .china_model_options h3 {
    color: #fff;
    font-size: 2em;
    text-align: center; }
  .china_model_options p {
    color: #fff;
    text-align: center; }
  .china_model_options .options_1 {
    padding: 0 0 0 0; }
  .china_model_options .options_2 {
    padding: 0 0 0 0; }
  .china_model_options dl {
    margin: 60px 0 10px; }
  .china_model_options dt {
    font-size: 1.25em;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px 0; }
  .china_model_options dd {
    font-size: .9em;
    color: #ccc;
    margin: 0 0 20px 0; }

ul img {
  max-width: 100%; }

@media screen and (min-width: 600px) {
  .china_intro {
    padding: 0 5%; }
    .china_intro p {
      max-width: 550px; }
    .china_intro iframe {
      max-width: 100%; } }
@media screen and (min-width: 768px) {
  .china_intro {
    padding: 50px 0; }
    .china_intro h1 {
      font-size: 3em; }
    .china_intro p {
      line-height: 1.45em;
      max-width: 500px; } }
.dealers_container {
  background-color: #161718;
  overflow: auto;
  padding: 6% 5%;
  margin: 0; }
  .dealers_container h1 {
    color: #fff;
    margin: 0 0 2em 0;
    padding: 0;
    text-align: center; }
  .dealers_container h2 {
    font-size: 1.25em;
    color: #fff; }
  .dealers_container a:link, .dealers_container a:visited {
    color: #9f9f9f;
    text-decoration: none; }
  .dealers_container a:active, .dealers_container a:hover {
    color: #9f9f9f;
    text-decoration: underline; }
  .dealers_container .center {
    text-align: center; }
  .dealers_container .left {
    text-align: left; }
  .dealers_container .right {
    text-align: right; }

.country_choices p {
  color: #ccc; }

.country_choices_v2 p {
  color: #ccc; }
.country_choices_v2 img {
  max-width: 100%; }

.country_choices > div {
  margin: 0px auto;
  max-width: 80%; }
  @media only screen and (min-width: 600px) {
    .country_choices > div {
      max-width: 26%; } }
  .country_choices > div img {
    max-width: 100%; }

.dealerlisting {
  margin: 0 0 50px 0; }
  .dealerlisting ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
  .dealerlisting li {
    margin: 0;
    padding: 0; }

.addressone, .addresstwo, .cityzip, .dealerphone {
  color: #fff; }

#dealerresults {
  background-color: #333;
  padding: 2%;
  margin: 50px 0; }
  #dealerresults .dealername {
    color: #fff;
    font-size: 1.5em; }
  #dealerresults .dealerlocation {
    color: #ccc;
    font-size: 1em; }
  #dealerresults .seonly {
    color: #fff; }

.signaturedealerscontainer {
  padding: 80px 0; }
  .signaturedealerscontainer h2 {
    font-size: 2.5em;
    text-align: center;
    margin: 0 0 20px 0; }
  .signaturedealerscontainer img {
    max-width: 100%; }
  .signaturedealerscontainer p {
    color: #ccc;
    text-align: center;
    font-size: 1em;
    margin: 0 0 60px 0; }
  .signaturedealerscontainer .dealername {
    color: #fff;
    font-size: 1.5em; }
  .signaturedealerscontainer .dealerlocation {
    color: #ccc;
    font-size: 1em; }

.signaturedealerscontainer_v2 {
  padding: 80px 0; }
  .signaturedealerscontainer_v2 h2 {
    font-size: 2.5em;
    text-align: center;
    margin: 0 0 20px 0; }
  .signaturedealerscontainer_v2 img {
    max-width: 100%; }
  .signaturedealerscontainer_v2 p {
    color: #ccc;
    text-align: left;
    font-size: 1em;
    margin: 0 0 60px 0; }
  @media only screen and (min-width: 600px) {
    .signaturedealerscontainer_v2 p {
      text-align: center; } }
  .signaturedealerscontainer_v2 .dealername {
    color: #fff;
    font-size: 1.5em; }
  .signaturedealerscontainer_v2 .dealerlocation {
    color: #ccc;
    font-size: 1em; }

.signaturedealerslist ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .signaturedealerslist ul + ul {
    margin: 50px 0 0 0; }
  .signaturedealerslist ul li {
    margin: 0;
    padding: 0; }
    .signaturedealerslist ul li + li {
      margin-top: 8px; }

.signaturedealerslist_v2 ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .signaturedealerslist_v2 ul + ul {
    margin: 35px 0 0 0; }
  @media only screen and (min-width: 600px) {
    .signaturedealerslist_v2 ul + ul {
      margin: 0 0 0 0; } }
  .signaturedealerslist_v2 ul li {
    margin: 0;
    padding: 0; }
    .signaturedealerslist_v2 ul li + li {
      margin-top: 8px; }

.canada, .international_distributors {
  background-color: #161718;
  overflow: auto;
  padding: 6% 5%;
  margin: 0; }
  .canada p, .international_distributors p {
    color: #fff;
    font-size: 1em;
    text-align: left; }
    @media only screen and (min-width: 600px) {
      .canada p, .international_distributors p {
        text-align: center; } }
  @media only screen and (min-width: 600px) {
    .canada, .international_distributors {
      padding: 3em 2em; } }
  .canada h1, .international_distributors h1 {
    text-align: center;
    font-size: 1.5em; }
    @media only screen and (min-width: 600px) {
      .canada h1, .international_distributors h1 {
        font-size: 3em; } }
  .canada a:link, .canada a:visited, .international_distributors a:link, .international_distributors a:visited {
    color: #ccc;
    text-decoration: none; }
  .canada a:active, .canada a:hover, .international_distributors a:active, .international_distributors a:hover {
    color: #fff;
    text-decoration: underline; }

.canadiandealerscontainer {
  padding: 80px 0; }
  .canadiandealerscontainer h2 {
    font-weight: bold;
    font-size: 2.5em;
    margin: 0 0 20px 0; }
  .canadiandealerscontainer p {
    color: #ccc;
    text-align: center;
    font-size: 1em;
    margin: 0 0 60px 0; }
  .canadiandealerscontainer .dealername {
    color: #fff;
    font-size: 1.5em; }
  .canadiandealerscontainer .dealerlocation {
    color: #ccc;
    font-size: 1em; }

.canadiandealerslist ul {
  margin: 0;
  padding: 0 0 40px 0;
  list-style-type: none;
  max-width: 80%; }
  .canadiandealerslist ul li {
    margin: 0;
    padding: 0; }
    .canadiandealerslist ul li + li {
      margin-top: 8px; }

.canadiandealerslist_v2 ul {
  margin: 0 0 60px 0;
  padding: 0 0 0 0;
  list-style-type: none;
  max-width: 100%; }
  @media only screen and (min-width: 600px) {
    .canadiandealerslist_v2 ul {
      max-width: 80%; } }
  .canadiandealerslist_v2 ul li {
    margin: 0;
    padding: 0; }
    .canadiandealerslist_v2 ul li + li {
      margin-top: 8px; }
  .canadiandealerslist_v2 ul .seonly {
    color: #fff;
    text-transform: uppercase; }
.canadiandealerslist_v2 .dealername {
  color: #fff;
  font-size: 1.5em; }
.canadiandealerslist_v2 .dealerlocation {
  color: #ccc;
  font-size: 1em; }
.canadiandealerslist_v2 .dealerwebsite {
  max-width: 50%; }

.canadiandealer {
  max-width: 100%; }
  @media only screen and (min-width: 600px) {
    .canadiandealer {
      max-width: 80%; } }
  .canadiandealer .seonly {
    color: #fff;
    text-transform: uppercase; }
  .canadiandealer a:link, .canadiandealer a:visited {
    color: #ccc;
    text-decoration: none; }
  .canadiandealer a:active, .canadiandealer a:hover {
    color: #fff;
    text-decoration: underline; }

.canadaflag {
  text-align: center;
  margin: 0 0 50px 0; }
  .canadaflag img {
    max-width: 150px; }

.chooseyourprovince {
  color: #fff;
  font-size: 1.1em;
  font-weight: bold; }

.provinces {
  text-align: center;
  margin: 10px 0 0 0;
  padding: 0; }
  .provinces li {
    display: block;
    padding: 0 0 0 .8em; }
    @media only screen and (min-width: 600px) {
      .provinces li {
        display: inline; } }
    .provinces li a:link, .provinces li a:visited {
      color: #fdffd7;
      text-decoration: none; }
    .provinces li a:active, .provinces li a:hover {
      color: #fdffd7;
      text-decoration: underline; }

.provincename {
  padding: 70px 0 20px 0;
  font-size: 2.25em; }

.newsearch {
  margin: 0;
  padding: 0; }

.dealer_locator {
  background-color: #161718;
  padding: 2em 0;
  /* Always set the map height explicitly to define the size of the div element that contains the map. */
  /* makes the map stick to the side taking 100% of the height so you scroll only through the list of locations */ }
  .dealer_locator header {
    display: block;
    margin: 0px auto 20px auto;
    max-width: 97%;
    text-align: center; }
    .dealer_locator header .div img {
      max-width: 100%; }
    @media only screen and (min-width: 600px) {
      .dealer_locator header {
        display: flex;
        align-items: center;
        text-align: left; } }
  .dealer_locator h1 {
    margin: 20px 0 20px 20px;
    font-size: 28px; }
    @media only screen and (min-width: 600px) {
      .dealer_locator h1 {
        font-size: 38px;
        text-align: left; } }
  .dealer_locator .controls {
    background-color: #ffffff;
    border-radius: 2px;
    border: 1px solid transparent;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    height: 29px;
    margin-left: 17px;
    margin-top: 10px;
    outline: none;
    padding: 0 11px 0 13px;
    width: 400px; }
  .dealer_locator .map-container {
    position: sticky;
    right: 0;
    top: 0;
    float: left;
    height: 100%; }
  .dealer_locator #map {
    height: 100vh; }
  .dealer_locator .input-group,
  .dealer_locator .half {
    margin-top: 1%; }
  .dealer_locator .search-btn {
    margin-left: 1%; }
  .dealer_locator #list {
    padding-left: 5%;
    padding-top: 5%; }
  .dealer_locator .dist {
    color: #999999; }
  .dealer_locator .addr_bottom {
    padding-top: 0; }
  .dealer_locator #list .dealers h3 {
    color: #fff;
    margin: 0;
    text-align: left;
    padding: 0; }
  .dealer_locator #list .dealers p {
    color: #ccc;
    margin: 0;
    padding: 0; }
  .dealer_locator #map .dealers h3 {
    color: #000;
    margin: 0;
    text-align: left;
    padding: 0; }
  .dealer_locator #map .dealers p {
    color: #000;
    margin: 0;
    padding: 0; }

.experience2018 {
  background: url(/imgs/experience/bg1.jpg) #022130 top no-repeat;
  background-size: contain;
  max-width: 100%;
  max-height: 100%; }
  .experience2018 h1 {
    text-align: center;
    font-size: 2em;
    font-weight: normal;
    padding: 0 0 0 0;
    margin: 0;
    text-transform: uppercase; }
    @media only screen and (min-width: 768px) {
      .experience2018 h1 {
        font-size: 3em; } }
    .experience2018 h1 span {
      font-size: 0.85em;
      display: block;
      margin: 0 0 0 0;
      text-transform: none; }
  .experience2018 h2 {
    background-color: #c2042f;
    padding: 0.4em 0.5em; }
  .experience2018 .inner {
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .experience2018 .inner {
        width: 90%; } }
  .experience2018 .experience_inner_container {
    padding: 0 20px 3em 20px; }
    @media only screen and (min-width: 768px) {
      .experience2018 .experience_inner_container {
        padding: 0 50px 3em 50px; } }
  .experience2018 p a:link, .experience2018 p a:visited {
    color: #c2042f;
    text-decoration: none; }
  .experience2018 p a:active, .experience2018 p a:hover {
    color: #c2042f;
    text-decoration: underline; }

.experience_logo {
  padding: 4em 0 0em 0;
  max-width: 90%;
  margin: 0px auto;
  text-align: center;
  display: block; }
  @media only screen and (min-width: 768px) {
    .experience_logo {
      max-width: 70%; } }

.experience_intro p.comingsoon {
  margin: 0px auto;
  width: 90%;
  text-align: center;
  font-size: 1.5em;
  padding: 2em 0 1em 0; }
.experience_intro p {
  font-size: 18px;
  line-height: 24px;
  margin: 0px auto;
  width: 70%;
  text-align: left; }
  @media only screen and (min-width: 768px) {
    .experience_intro p {
      text-align: center; } }
  .experience_intro p + p {
    margin: 1em auto 0px auto; }
.experience_intro .now_open {
  font-weight: bold;
  font-size: 28px;
  margin: 0px auto 30px auto; }
.experience_intro .ghost_button {
  text-transform: uppercase;
  text-align: center;
  margin: 4em auto; }
  .experience_intro .ghost_button a {
    text-decoration: none;
    font-size: 100%;
    font-weight: normal;
    color: #fff;
    border: 1px solid #c2042f;
    padding: 0.75em 1.8em;
    display: inline-block;
    overflow: hidden;
    transition: all 0.4s ease 0s;
    cursor: pointer; }
    .experience_intro .ghost_button a:active, .experience_intro .ghost_button a:hover {
      color: #fff;
      border: 1px solid #c2042f;
      background: #c2042f; }

.events_outline {
  margin: 3em auto;
  display: block;
  width: 90%; }
  .events_outline h2 {
    font-size: 1.8em;
    text-transform: uppercase;
    padding: 0.5em;
    text-align: left; }
    @media only screen and (min-width: 768px) {
      .events_outline h2 {
        font-size: 2.3em;
        text-align: center; } }
    .events_outline h2 span {
      display: block;
      font-size: 0.6em;
      font-style: italic; }
  .events_outline .day_outline .day_inner {
    width: 90%;
    margin: 0px auto;
    display: block; }
  .events_outline .day_outline ul {
    color: #fff;
    list-style-type: none;
    font-size: 1.2em;
    margin: 0;
    padding: 0;
    text-align: left; }
    .events_outline .day_outline ul li span {
      display: block;
      font-weight: bold;
      margin: 0 0 0.5em 0; }
    .events_outline .day_outline ul li + li {
      margin: 2em 0 0 0; }
  .events_outline .experience_inner_column {
    margin: 0px auto;
    width: 90%; }

.saturday_hours {
  color: #fff;
  display: block;
  font-weight: bold;
  font-size: 2em;
  margin: 0 0 1em 0; }
  @media only screen and (min-width: 768px) {
    .saturday_hours {
      margin: 0 0 1em 0; } }

.experience_block {
  margin: 2em auto; }
  @media only screen and (min-width: 768px) {
    .experience_block {
      margin: 3em auto; } }

.centered h2 {
  text-align: left; }
  @media only screen and (min-width: 768px) {
    .centered h2 {
      text-align: center; } }
.centered p {
  width: 70%;
  margin: 0px auto; }

.saturdaynotice {
  font-weight: bold;
  font-style: italic; }

.concert h3 {
  font-weight: bold;
  font-size: 2em;
  margin: 1em 0 0.5em 0;
  padding: 0 0 0 0; }
.concert p {
  text-align: left;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 1.5em;
  width: 90%; }
  .concert p + p {
    margin: 1em auto 0 auto; }
.concert img {
  max-width: 100%; }

.saturday_concert {
  width: 100%;
  text-align: center;
  margin: 13em auto; }
  .saturday_concert h3 {
    margin: 2em 0 0.5em 0; }
  .saturday_concert p {
    text-align: center;
    margin: 0px auto;
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .saturday_concert p {
        width: 70%; } }
  .saturday_concert .day_inner {
    margin: 0px auto;
    width: 50%; }

.experience_artist {
  margin: 2em auto 0 auto; }

/* HOTELS */
.hotel_information .ghost_button {
  text-transform: uppercase;
  text-align: center;
  margin: 4em auto; }
  .hotel_information .ghost_button a {
    text-decoration: none;
    font-size: 100%;
    font-weight: normal;
    color: #fff;
    border: 1px solid #c2042f;
    padding: 0.75em 1.8em;
    display: inline-block;
    overflow: hidden;
    transition: all 0.4s ease 0s;
    cursor: pointer; }
    .hotel_information .ghost_button a:active, .hotel_information .ghost_button a:hover {
      color: #fff;
      border: 1px solid #c2042f;
      background: #c2042f; }

#hotel_list {
  display: none; }

.hotel {
  color: #fff;
  padding: 3em 0 0 0; }
  .hotel h3 {
    font-weight: bold; }
  .hotel address {
    color: #fff;
    font-weight: normal;
    font-style: normal;
    margin: 0 0 0.7em 0; }

/* Directions */
.directions h3 {
  font-weight: bold; }

.physical_address {
  text-align: center;
  margin: 3em auto; }
  .physical_address address {
    color: #fff;
    font-size: 1.2em; }

/* FAQ */
.question_container {
  width: 95%; }
  .question_container .question {
    font-style: italic;
    font-weight: bold;
    font-size: 1.1em;
    margin: 2em 0 1em 0; }
  .question_container .question + .answer {
    margin: 0 0 3em 0; }

.experience_dealer {
  margin: 0 0 3em 0; }

/* parallax */
.parallax img {
  max-width: 100%; }

.breadcrumbs {
  max-width: 100%;
  margin: 0px auto;
  padding: 1em 2% 2em 2%; }
  @media only screen and (min-width: 768px) {
    .breadcrumbs {
      padding: 1em 1%; } }
  .breadcrumbs ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .breadcrumbs ul li {
      float: left;
      font-size: .75em;
      color: #fff; }
      .breadcrumbs ul li + li {
        background: url(/imgs/global/breadcrumb_slash.png) no-repeat left;
        padding-left: 1.3em; }
      .breadcrumbs ul li a:link, .breadcrumbs ul li a:visited {
        color: #ccc;
        text-decoration: underline; }
      .breadcrumbs ul li a:active, .breadcrumbs ul li a:hover {
        color: #ccc;
        text-decoration: none; }

.events_container {
  background-color: #141414;
  padding: 0 0 2em 0; }
  .events_container h1 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: bold;
    font-size: 2.24em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.5em 0; }

.event {
  display: block;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .event {
      margin: 0 0 3.5em 0; } }
  .event + .event {
    margin-top: 2.5em; }
    @media only screen and (min-width: 768px) {
      .event + .event {
        margin-top: 0; } }
  .event ul {
    list-style-type: none;
    margin: 0;
    padding: 0 5%;
    float: left;
    max-width: 65%; }
  .event li {
    color: #ccc; }
  .event img {
    float: left;
    max-width: 25%; }
  .event a:link, .event a:visited {
    color: #fff;
    text-decoration: none; }
  .event a:active, .event a:hover {
    color: #fff;
    text-decoration: underline; }
  .event .event_name {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: bold;
    font-size: 1.25em;
    margin: 0 0 0.4em 0; }
  .event .date, .event .time, .event .venue, .event .city_and_state, .event .country {
    font-size: 0.9em; }

.event_inner_container {
  margin: 0px auto;
  max-width: 90%; }

.single_event_container_inner, .event_list_container {
  clear: left;
  max-width: 95%;
  margin: 2em auto 0 auto;
  padding: 0 1% 2.5em 1%;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .single_event_container_inner, .event_list_container {
      max-width: 1160px; } }

.event_general_information {
  float: none;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .event_general_information {
      float: left;
      width: 58.189655%; } }
  .event_general_information h1 {
    color: #fff;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-size: 1.5em;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: bold;
    text-transform: uppercase; }
    @media only screen and (min-width: 768px) {
      .event_general_information h1 {
        font-size: 2em; } }
  .event_general_information p {
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    line-height: 1.25em; }
    .event_general_information p + p {
      margin: 1em 0 0 0; }
  .event_general_information img {
    max-width: 100%;
    margin: 1em auto 1.5em auto;
    padding: 0; }

.event_copy a:link, .event_copy a:visited {
  color: #ccc;
  text-decoration: none; }
.event_copy a:active, .event_copy a:hover {
  color: #ccc;
  text-decoration: underline; }

.event_meta_data {
  float: none;
  width: 100%;
  margin: 3em auto 0 auto; }
  @media only screen and (min-width: 768px) {
    .event_meta_data {
      float: right;
      width: 41.810345%;
      margin: 0px auto; } }
  .event_meta_data ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: #fff;
    text-align: center; }
    .event_meta_data ul + ul {
      margin-top: 2em; }

.map {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  margin: 1.75em auto 0 auto;
  max-width: 80%; }
  @media only screen and (min-width: 768px) {
    .map {
      max-width: 70%; } }
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }

.homehero {
  background-color: #000;
  margin: 0px auto;
  max-width: 100%; }
  .homehero img {
    max-width: 100%; }

/* Sub Content */
.subcontent_wrapper {
  background-color: #000;
  overflow: auto;
  padding: 3em 0; }

/* Sub Four */
.featured_products {
  overflow: hidden;
  padding: 0.5em 0;
  width: 95%;
  margin: 0px auto; }
  .featured_products h2 {
    color: #ededed;
    margin: 0.5em 0 1em 0;
    font-weight: normal;
    font-family: 'Raleway','Helvetica Neue', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 1.5em;
    text-align: center; }
    @media only screen and (min-width: 600px) {
      .featured_products h2 {
        font-size: 2em; } }
  .featured_products img {
    max-width: 100%;
    display: block; }

.newsfeed {
  max-width: 95%;
  padding: 0.5em;
  margin: 3em auto 0 auto;
  background-color: #161718;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }
  .newsfeed h2 {
    color: #ededed;
    margin: 1em 0 1em 0;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.5em;
    text-align: center; }
    @media only screen and (min-width: 600px) {
      .newsfeed h2 {
        font-size: 2em; } }
  .newsfeed .more_stories {
    color: #c1c1c1;
    display: block;
    border: 1px solid #757161;
    background-color: transparent;
    padding: 1em 0.75em;
    text-transform: uppercase;
    font-size: 0.8em;
    text-decoration: none;
    margin: 4.3em auto 2em auto;
    text-align: center;
    width: 200px; }
    .newsfeed .more_stories:hover {
      color: #1E1D1D;
      background-color: #FFF699;
      border: 1px solid #FFF699;
      text-decoration: none; }
  .newsfeed img {
    max-width: 100%; }
  .newsfeed article {
    margin: 0;
    padding: 0; }
    .newsfeed article div {
      padding: 0 0.65em;
      max-width: 90%;
      margin: 0px auto; }
    .newsfeed article h1 {
      font-size: 1em;
      font-family: "Source Sans Pro", sans-serif;
      font-weight: bold;
      margin: 0.8em 0 0 0;
      padding: 0;
      line-height: 1.3em; }
      .newsfeed article h1 a:link, .newsfeed article h1 a:visited {
        color: #ccc;
        text-decoration: none; }
      .newsfeed article h1 a:active, .newsfeed article h1 a:hover {
        color: #999;
        text-decoration: none; }
      @media only screen and (min-width: 600px) {
        .newsfeed article h1 {
          font-size: 1.25em;
          line-height: 1.4em; } }
    .newsfeed article time {
      display: block;
      font-size: 0.7em;
      color: #616161;
      margin: 0.5em 0 0 0;
      padding: 0;
      text-transform: uppercase; }
    .newsfeed article + article {
      margin: 24px auto 0px auto; }
      @media only screen and (min-width: 600px) {
        .newsfeed article + article {
          margin: 0px auto; } }

.blogfeed {
  max-width: 95%;
  padding: 0.5em;
  margin: 3em auto 0 auto; }
  .blogfeed h2 {
    color: #ededed;
    margin: 1em 0 1em 0;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.5em;
    text-align: center; }
    @media only screen and (min-width: 600px) {
      .blogfeed h2 {
        font-size: 2em; } }
  .blogfeed .more_stories {
    color: #c1c1c1;
    display: block;
    border: 1px solid #757161;
    background-color: transparent;
    padding: 1em 0.75em;
    text-transform: uppercase;
    font-size: 0.8em;
    text-decoration: none;
    margin: 4.3em auto 2em auto;
    text-align: center;
    width: 200px; }
    .blogfeed .more_stories:hover {
      color: #1E1D1D;
      background-color: #FFF699;
      border: 1px solid #FFF699;
      text-decoration: none; }
  .blogfeed img {
    max-width: 100%; }
  .blogfeed article {
    margin: 0 0 1em 0;
    padding: 0; }
    @media only screen and (min-width: 600px) {
      .blogfeed article {
        margin: 0; } }
    .blogfeed article div {
      padding: 0 0.65em; }
    .blogfeed article h1 {
      font-size: 1em;
      line-height: 1.3em;
      font-family: "Source Sans Pro", sans-serif;
      font-weight: bold;
      margin: 0.5em 0 0 0;
      padding: 0; }
      .blogfeed article h1 a:link, .blogfeed article h1 a:visited {
        color: #ccc;
        text-decoration: none; }
      .blogfeed article h1 a:active, .blogfeed article h1 a:hover {
        color: #999;
        text-decoration: none; }
      @media only screen and (min-width: 600px) {
        .blogfeed article h1 {
          font-size: 1em;
          line-height: 1.3em; } }
    .blogfeed article time {
      display: block;
      font-size: 0.7em;
      color: #616161;
      margin: 0.5em 0 0 0;
      padding: 0;
      text-transform: uppercase; }

/* Alerts */
#alertcontain {
  overflow: hidden;
  max-width: 100%; }

.alert {
  clear: both;
  color: #fff;
  font-size: 1em;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  max-width: 100%; }
  .alert a {
    padding: 1.4em 1em;
    display: block;
    width: 100%; }
    .alert a span {
      display: block;
      max-width: 90%;
      margin: 0px auto;
      font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 1.25em; }
      @media only screen and (min-width: 600px) {
        .alert a span {
          font-size: 1.5em; } }
    .alert a:link, .alert a:visited {
      background-color: #545655;
      color: #fff;
      text-decoration: none; }
    .alert a:active, .alert a:hover {
      background-color: #6c6f6d;
      color: #fff;
      text-decoration: none; }

@media only screen and (min-width: 600px) {
  .alert {
    font-size: 1.25em;
    letter-spacing: default; } }
.alert_top {
  clear: both;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  max-width: 100%; }
  .alert_top a {
    padding: 1.1em 1em;
    display: block;
    width: 100%; }
    .alert_top a span {
      max-width: 90%;
      margin: 0px auto;
      font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 1em;
      font-style: italics;
      font-weight: normal; }
      @media only screen and (min-width: 600px) {
        .alert_top a span {
          font-size: 1em; } }
    .alert_top a:link, .alert_top a:visited {
      background-color: #460001;
      color: #fff;
      text-decoration: none; }
    .alert_top a:active, .alert_top a:hover {
      background-color: #6c0402;
      color: #fff;
      text-decoration: none; }

@media only screen and (min-width: 600px) {
  .alert_top {
    font-size: 1em;
    letter-spacing: default; } }
/* Media */
@media only screen and (min-width: 768px) {
  .media_nav {
    display: flex;
    font-size: 1.25em;
    list-style-type: none;
    margin: 0 0 80px 0;
    padding: 0; }

  .media_nav_archive {
    display: block;
    font-size: 1.25em;
    list-style-type: none;
    margin: 0 0 80px 0;
    padding: 0; }
    .media_nav_archive li {
      display: inline; }
    .media_nav_archive li + li {
      margin: 0 0 0 0;
      padding-left: 1em; }

  .awards_list {
    padding: 0 0 0 20px; }

  .historic_photos li {
    max-width: 25%;
    float: left; }
  .historic_photos li + li {
    margin: 0 0 0 2em !important; }
  .historic_photos img {
    max-width: 100%; }
  .historic_photos span {
    display: block; } }
.media_press h2 {
  font-size: 2.25em; }
.media_press img {
  max-width: 100%; }

.media_section {
  clear: both;
  margin: 120px 0 60px 0;
  border-top: 1px dotted #ccc; }

.press_releases {
  margin-top: 45px; }

.press_release {
  margin: 0;
  overflow: auto; }
  .press_release img {
    float: left;
    max-width: 100px;
    padding: 0 10px 40px 0; }
    @media only screen and (min-width: 768px) {
      .press_release img {
        padding: 0 10px 0 0; } }
  .press_release h3 {
    font-size: 1em;
    margin: 0;
    padding: 0;
    max-width: 90%; }
  .press_release + .press_release {
    margin-top: 30px;
    padding-top: 10px; }

.press_release_column + .press_release_column {
  margin-top: 50px; }
  @media only screen and (min-width: 768px) {
    .press_release_column + .press_release_column {
      margin-top: 0px; } }

.archives_link {
  padding: 1.05em 0;
  text-transform: uppercase;
  font-size: 1.25em; }

.date {
  color: #ccc;
  font-size: .85em;
  margin: 0;
  padding: 10px 0 0 0; }

.logos ul {
  list-style-type: none;
  padding: 0; }
.logos li {
  font-size: .85em; }
.logos img {
  display: block;
  padding-bottom: 15px;
  margin-top: 40px; }
.logos p {
  max-width: 200px; }

.factory_photo_downloads {
  margin: 5em auto; }
  .factory_photo_downloads .inner {
    width: 90%; }

.awards li {
  padding: 0 45px 0 0;
  font-size: .75em; }

.awards_list {
  margin: 40px 0 0 0;
  padding: 0 0 0 15px; }

.history_links {
  margin: 0;
  padding: 0 0 0 0;
  list-style-type: none; }
  .history_links li + li {
    margin-top: 1.5em !important; }
  .history_links span {
    display: block;
    font-size: .85em;
    margin: .5em 0 0 0; }

.historic_photos_contain {
  overflow: hidden; }
  .historic_photos_contain h3 {
    margin: 2em 0 0 0; }
  .historic_photos_contain p {
    margin: .5em 0 0 0; }

.historic_photos {
  margin: 1.75em 0 0 0 !important;
  padding: 0 0 0 0;
  overflow: hidden; }
  .historic_photos ul {
    margin: 0;
    padding: 0; }
  .historic_photos li {
    max-width: 200px;
    float: none;
    list-style-type: none; }
    @media only screen and (min-width: 768px) {
      .historic_photos li {
        max-width: 25%;
        float: left; } }
  .historic_photos li + li {
    margin: 1.5em 0 0 0 !important; }
    @media only screen and (min-width: 768px) {
      .historic_photos li + li {
        margin: 0 0 0 2em !important; } }
  .historic_photos span {
    display: block; }
  .historic_photos img {
    padding: 0 10px 0 0; }

.testflex > .testflexcol {
  width: 50%;
  padding: 10px; }

.previous_model_year_notice span {
  font-weight: bold; }
.previous_model_year_notice a {
  font-style: italic; }
  .previous_model_year_notice a:link, .previous_model_year_notice a:visited {
    color: #a9bdd7;
    text-decoration: none; }
  .previous_model_year_notice a:active, .previous_model_year_notice a:hover {
    color: #a9bdd7;
    text-decoration: underline; }

/* vars */
.left {
  text-align: left; }

.right {
  text-align: left; }

.center {
  text-align: center; }

.product_menu {
  padding: 0 20px; }
  .product_menu h3 {
    color: #fff;
    font-size: 1.3em;
    text-transform: uppercase; }
  .product_menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
  .product_menu li {
    font-size: .85em;
    max-width: 93%; }
    .product_menu li + li {
      margin-top: 10px; }
  .product_menu div + div {
    margin-top: 10px; }
    @media only screen and (min-width: 600px) {
      .product_menu div + div {
        margin-top: 0; } }
  .product_menu a:link, .product_menu a:visited {
    color: #c8c8c8;
    text-decoration: none; }
  .product_menu a:active, .product_menu a:hover {
    color: #fdffd7;
    text-decoration: none; }

.product_line {
  padding: 0 0 30px 0; }

.product_header_left {
  float: none;
  padding: 0 0 1.25em 0;
  width: 100%; }
  @media only screen and (min-width: 600px) {
    .product_header_left {
      float: left;
      width: 75%; } }

.product_header_right {
  float: none;
  width: 100%; }
  @media only screen and (min-width: 600px) {
    .product_header_right {
      float: right;
      width: 25%; } }

.product_range_button {
  font-size: 0.75em;
  position: relative; }
  @media only screen and (min-width: 600px) {
    .product_range_button {
      position: absolute;
      bottom: 0px;
      right: 0px; } }
  .product_range_button a {
    display: block;
    padding: 0.75em 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%; }
    @media only screen and (min-width: 600px) {
      .product_range_button a {
        padding: 0.75em 1.5em 0.75em 0.75em;
        width: 190px; } }
    .product_range_button a:link, .product_range_button a:visited {
      color: #333;
      background: url(/imgs/arrow_up_down.png) right no-repeat #fdffd7;
      text-decoration: none; }
      @media only screen and (min-width: 600px) {
        .product_range_button a:link, .product_range_button a:visited {
          background-position-y: -36px;
          background-position-x: 192px; } }
    .product_range_button a:active, .product_range_button a:hover {
      color: #333;
      background: url(/imgs/arrow_up_down.png) right no-repeat #f8ffc5;
      text-decoration: none; }
      @media only screen and (min-width: 600px) {
        .product_range_button a:active, .product_range_button a:hover {
          background-position-y: -36px;
          background-position-x: 192px; } }

#more_products_container {
  background-color: #505050;
  display: none;
  position: absolute;
  z-index: 999;
  width: 100%;
  overflow: hidden;
  max-width: 1200px;
  margin: 0px auto;
  -webkit-box-shadow: 0px 4px 7px 0px #1f1f1f;
  -moz-box-shadow: 0px 4px 7px 0px #1f1f1f;
  box-shadow: 0px 4px 7px 0px #1f1f1f; }
  @media only screen and (min-width: 600px) {
    #more_products_container {
      -webkit-box-shadow: 0px 2px 7px 0px #121212;
      -moz-box-shadow: 0px 2px 7px 0px #121212;
      box-shadow: 0px 2px 7px 0px #121212; } }

.product_hero {
  clear: both;
  background-color: #000;
  overflow: hidden; }
  .product_hero img {
    background-color: #000;
    display: block;
    max-width: 100%; }

/* Header --------------------------------- */
.product_header {
  background-color: #141414;
  overflow: auto;
  padding: 2.2em 0 0 0;
  position: relative;
  width: 100%; }
  @media only screen and (min-width: 600px) {
    .product_header {
      overflow: hidden;
      padding: 0 0 0 0; } }
  .product_header h1 {
    color: #fff;
    font-weight: normal;
    font-size: 2em;
    margin: 0px auto;
    padding: 0 0 0.5em 0;
    text-align: center;
    width: 90%; }
    @media only screen and (min-width: 600px) {
      .product_header h1 {
        margin: 0;
        padding: 26px 0 0 25px;
        font-weight: normal;
        font-size: 2.5em;
        text-align: left; } }
  .product_header h2 {
    color: #9e9e9e;
    font-weight: normal;
    font-size: 1.4em;
    margin: 0;
    padding: 0.3em 0 0.5em 25px;
    text-align: center;
    text-transform: uppercase; }
    @media only screen and (min-width: 600px) {
      .product_header h2 {
        text-align: left; } }
    .product_header h2 span {
      color: #ccc; }
  .product_header .key_features {
    color: #ccc;
    font-size: 0.8em;
    list-style-type: none;
    margin: 0px auto;
    padding: 0 0 1em 0;
    text-align: center;
    width: 90%; }
    @media only screen and (min-width: 600px) {
      .product_header .key_features {
        font-size: 0.9em;
        margin: 0;
        padding: 11px 10px 10px 25px;
        text-align: left;
        width: 90%; } }
    .product_header .key_features li {
      display: inline; }
      .product_header .key_features li + li {
        background: url(/imgs/pipe.png) no-repeat;
        padding: 0 0 0 1.3em; }
  .product_header .previous_model_year_alert {
    color: #fff;
    font-weight: normal;
    font-size: 1.2em;
    margin: 0px auto;
    padding: 0 0 0.5em 0;
    text-align: center;
    width: 90%; }
    @media only screen and (min-width: 600px) {
      .product_header .previous_model_year_alert {
        margin: 0;
        padding: 26px 0 0 25px;
        font-weight: normal;
        font-size: 1.4em;
        text-align: left; } }
    .product_header .previous_model_year_alert a:link, .product_header .previous_model_year_alert a:visited {
      color: #ccc;
      text-decoration: none; }
    .product_header .previous_model_year_alert a:active, .product_header .previous_model_year_alert a:hover {
      color: #fff;
      text-decoration: underline; }

/* Model Sections -------------------------*/
.product_section, .odd_section_first, .odd_section, .even_section {
  color: #fff;
  overflow: hidden;
  padding: 0 20px;
  width: 100%; }

.inner_container {
  margin: 0px auto;
  max-width: 95%;
  padding: 40px 0 50px 0; }
  @media only screen and (min-width: 600px) {
    .inner_container {
      padding: 80px 0 50px 0; } }

.odd_section_first {
  background: #2d2d2d;
  padding: 50px 0; }

.odd_section {
  background: url(/imgs/models/arrow_odd.png) top no-repeat #2d2d2d;
  padding: 50px 0; }

.even_section {
  background: url(/imgs/models/arrow_even.png) top no-repeat #141414;
  padding: 50px 0; }

.half_column {
  padding: 0 20px; }

.center_headline {
  font-size: 2em;
  text-align: center; }

h3.center_headline {
  font-size: 1.75em;
  text-align: left;
  margin: 2.35em auto 0.8em auto;
  width: 95%; }
  @media only screen and (min-width: 600px) {
    h3.center_headline {
      width: 75%; } }

.model_section_tagline {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 60px; }

.back_to_the_top {
  font-weight: normal;
  height: 75px; }
  .back_to_the_top a {
    display: block;
    height: 100%;
    line-height: 75px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none; }
    .back_to_the_top a:link, .back_to_the_top a:visited {
      background-color: #fdffd7;
      color: #333; }
    .back_to_the_top a:active, .back_to_the_top a:hover {
      background-color: #f8ffc5;
      color: #333; }

.product_photos h2,
.product_videos h2,
.amp_audio h2,
.audio h2,
.accolades h2,
.features h2,
.colors h2,
.dealers h2,
.artist_package_specs h2,
.gen_three_trem h2,
.features h2,
.dealer_stock h1,
.amp_circuit h2,
.downloads h2,
.other_signature_models h2,
.product_specs h2 {
  color: #fff;
  font-size: 1.875em;
  letter-spacing: .1em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  padding: 0 0; }
  @media only screen and (min-width: 768px) {
    .product_photos h2,
    .product_videos h2,
    .amp_audio h2,
    .audio h2,
    .accolades h2,
    .features h2,
    .colors h2,
    .dealers h2,
    .artist_package_specs h2,
    .gen_three_trem h2,
    .features h2,
    .dealer_stock h1,
    .amp_circuit h2,
    .downloads h2,
    .other_signature_models h2,
    .product_specs h2 {
      font-size: 3em;
      margin: 0 0 0.75em 0; } }
  .product_photos h2 + p,
  .product_videos h2 + p,
  .amp_audio h2 + p,
  .audio h2 + p,
  .accolades h2 + p,
  .features h2 + p,
  .colors h2 + p,
  .dealers h2 + p,
  .artist_package_specs h2 + p,
  .gen_three_trem h2 + p,
  .features h2 + p,
  .dealer_stock h1 + p,
  .amp_circuit h2 + p,
  .downloads h2 + p,
  .other_signature_models h2 + p,
  .product_specs h2 + p {
    margin-top: 1em; }

.overview_copy h2,
.product_features h2 {
  color: #fff;
  font-size: 1.875em;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: left;
  margin: 0;
  padding: 0 0 1em 0; }
  @media only screen and (min-width: 768px) {
    .overview_copy h2,
    .product_features h2 {
      font-size: 1.75em; } }

.product_specs h3 {
  background-color: #505050;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2em;
  font-weight: normal;
  margin: 2em auto 0.5em auto;
  padding: 0.1em 0.5em 0.1em 0.5em;
  width: 90%;
  text-align: left;
  text-transform: uppercase; }

.specs_table th {
  background-color: #505050;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2em;
  font-weight: normal;
  margin: 2em 0 0.5em 0;
  padding: 0.1em 0.5em 0.1em 0.5em;
  text-align: left;
  text-transform: uppercase; }

/* Overview -------------------------- */
.overview {
  margin: 0 0 0 0;
  padding: 0; }
  .overview p {
    color: #fff;
    font-size: 1em;
    line-height: 1.4em;
    margin: 0px auto;
    width: 95%; }
    @media only screen and (min-width: 600px) {
      .overview p {
        width: 75%; } }
    .overview p + p {
      margin: 1.5em auto 0 auto; }
  .overview a:link, .overview a:visited {
    color: #A9BDD7;
    text-decoration: none; }
  .overview a:active, .overview a:hover {
    color: #d2dfff;
    text-decoration: underline; }
  .overview img {
    display: block;
    float: none;
    margin: 0px auto 4em auto;
    max-width: 100%;
    padding-top: 30px;
    text-align: center; }
  .overview blockquote {
    font-size: 1.2em;
    font-style: italic;
    line-height: 1.5em;
    margin: 0px auto;
    padding: 3em;
    width: 70%; }
    .overview blockquote span {
      display: block;
      font-size: 1.2em;
      font-style: normal;
      font-weight: bold;
      text-align: right; }
  .overview ul {
    width: 70%;
    margin: 0px auto;
    padding: 2em; }
    .overview ul li + li {
      margin: 1em 0 0 0; }
  .overview .artist_quote_callout {
    font-size: 1em;
    font-style: italic;
    font-weight: normal;
    line-height: 1.2em;
    padding: 1em 0 3em 0;
    width: 95%; }
    .overview .artist_quote_callout span {
      display: block;
      font-weight: bold;
      font-size: 1.1em;
      font-style: normal;
      text-align: right;
      margin: 1em 0 0 0; }
    @media only screen and (min-width: 600px) {
      .overview .artist_quote_callout {
        font-size: 1.3em;
        line-height: 1.5em;
        margin: 0px auto;
        width: 65%; } }

/* model page tabs ------------------------*/
.model_page_tabs {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  padding: 0 0; }
  .model_page_tabs h2 {
    color: #333;
    font-size: 1.875em;
    letter-spacing: .1em; }
  @media only screen and (min-width: 768px) {
    .model_page_tabs {
      font-size: 1.875em;
      margin: 0 0 0 0; } }
  .model_page_tabs li {
    margin: 0;
    padding: 0; }
  .model_page_tabs a {
    color: #666;
    text-decoration: underline;
    padding: 10px; }

.ui-tabs-active a {
  background-color: none;
  border-bottom: none;
  color: #fff;
  text-decoration: none; }

/* photos ---------------------------------*/
.product_photos ul {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  list-style-type: none;
  padding: 0; }
  .product_photos ul li span {
    display: block;
    padding: 3% 3%; }
    @media only screen and (min-width: 1030px) {
      .product_photos ul li span {
        padding: 5%; } }
.product_photos img {
  max-width: 100%; }
.product_photos .owl-carousel {
  margin: 0px auto;
  max-width: 100%; }
  @media only screen and (min-width: 600px) {
    .product_photos .owl-carousel {
      max-width: 800px; } }

/* videos --------------------------*/
.product_videos {
  clear: left; }
  .product_videos ul {
    list-style-type: none;
    padding: 0; }
  .product_videos iframe {
    margin: 0px auto;
    display: block;
    max-width: 90%; }
  .product_videos img {
    max-width: 100%; }
  .product_videos .video_swap {
    margin: 0 0 2em 0;
    overflow: hidden; }
    .product_videos .video_swap h3 {
      text-align: center;
      padding: 0 1em; }

/* audio ---------------------------------*/
.audio_clip img {
  max-width: 100%; }

/* specs ------------------------ */
.specs_container h4 {
  font-size: 1.3em;
  margin: 2.4em auto 0.5em auto;
  text-transform: uppercase;
  text-decoration: underline;
  width: 90%; }

.specs_table {
  margin: 0px auto 60px auto;
  width: 95%; }
  .specs_table tbody {
    display: block;
    margin: 20px 0 0 0;
    padding: 0 0 0 20px;
    width: 90%; }
  .specs_table a:link, .specs_table a:visited {
    color: #A9BDD7;
    text-decoration: none; }
  .specs_table a:active, .specs_table a:hover {
    color: #d2dfff;
    text-decoration: underline; }
  .specs_table td {
    font-size: 0.8em;
    padding: 1em 0;
    vertical-align: top; }
    @media only screen and (min-width: 600px) {
      .specs_table td {
        font-size: 1em;
        padding: 0.7em 5px; } }
  .specs_table td:first-of-type {
    padding: 1em 5px 1em 0px;
    width: 30%; }
    @media only screen and (min-width: 600px) {
      .specs_table td:first-of-type {
        padding: 0.7em 1em 0.7em 0;
        width: 40%; } }
  .specs_table .nested_table {
    width: 100%; }
    .specs_table .nested_table tbody {
      display: inline;
      padding: 0 0 0 0; }
    .specs_table .nested_table td:first-of-type {
      font-size: 1em;
      padding: 0em 0.2em 0.7em 0;
      width: 50%; }
      @media only screen and (min-width: 600px) {
        .specs_table .nested_table td:first-of-type {
          width: 30%; } }
    .specs_table .nested_table td {
      font-size: 1em;
      padding: 0em 5px;
      width: 50%; }
      @media only screen and (min-width: 600px) {
        .specs_table .nested_table td {
          width: 30%; } }

.specs_table.specs_table_first {
  margin: 50px auto 60px auto; }
  @media only screen and (min-width: 768px) {
    .specs_table.specs_table_first {
      margin: 0px auto 60px auto; } }

.specs_table_inner {
  width: 100%; }
  @media only screen and (min-width: 600px) {
    .specs_table_inner {
      width: 80%; } }

.preamp_tube_positions td:first-of-type {
  padding: 1em 5px 1em 0px;
  width: 10%; }
  @media only screen and (min-width: 600px) {
    .preamp_tube_positions td:first-of-type {
      padding: 0.7em 1em 0.7em 0;
      width: 10%; } }

.specs_table_row, .specs_table_row_even {
  padding: 20px 0; }

.specs_table_row_even {
  background-color: #333; }

.specs_upgrades_list {
  list-style-type: none;
  margin: 16px auto 0px auto;
  font-size: 0.8em;
  padding: 0 0 0 0;
  width: 90%; }
  @media only screen and (min-width: 768px) {
    .specs_upgrades_list {
      font-size: 1em; } }
  .specs_upgrades_list li {
    margin: 0 0 16px 0; }

/* product features ------------ */
.features h3 {
  margin: 2em 0 1em 0;
  font-size: 1.5em;
  text-align: center; }
  @media only screen and (min-width: 600px) {
    .features h3 {
      text-align: left; } }
.features ul {
  text-align: center;
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0; }
  .features ul li {
    width: 100%;
    color: #ccc;
    margin: 0 0 0 0;
    padding: 0 0 0 0; }
    @media only screen and (min-width: 600px) {
      .features ul li {
        text-align: left;
        margin: 0px auto;
        width: 90%; } }
    .features ul li + li {
      margin: 1em 0 0 0; }
@media only screen and (min-width: 600px) {
  .features p {
    font-size: 1em;
    margin: 1em auto 2em auto;
    width: 75%; } }

.product_features img {
  display: block;
  max-width: 100%;
  margin: 3em auto 0 auto; }

/* downloads ----------------- */
.downloads ul {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style-type: none;
  text-align: center; }
  .downloads ul li + li {
    margin: 1em 0 0 0; }
.downloads a:link, .downloads a:visited {
  color: #A9BDD7;
  text-decoration: none; }
.downloads a:active, .downloads a:hover {
  color: #d2dfff;
  text-decoration: underline; }

.gen_three_trem .inner_container {
  margin: 0px auto;
  width: 95%; }
.gen_three_trem img {
  max-width: 100%; }
.gen_three_trem p {
  margin: 0px auto 2em auto;
  width: 95%;
  font-size: 1em; }
  @media only screen and (min-width: 600px) {
    .gen_three_trem p {
      width: 75%; } }
.gen_three_trem ul {
  margin: 1.5em auto 0 auto;
  padding: 0;
  width: 85%; }
  @media only screen and (min-width: 600px) {
    .gen_three_trem ul {
      margin: 0 0 0 3em; } }
  .gen_three_trem ul li {
    font-size: 0.925em; }
    .gen_three_trem ul li + li {
      margin: 1.1em 0 0 0; }
      @media only screen and (min-width: 600px) {
        .gen_three_trem ul li + li {
          margin: 1em 0 0 0; } }
.gen_three_trem .schematic {
  margin: 4.5em 0 0 0; }

/* dealers ---------------- */
.dealers a:link, .dealers a:visited {
  color: #A9BDD7;
  text-decoration: none; }
.dealers a:active, .dealers a:hover {
  color: #d2dfff;
  text-decoration: underline; }
.dealers h3 {
  text-align: center; }

.model_dealer {
  list-style-type: none; }
  .model_dealer .dealer_name {
    font-size: 0.9em; }
    @media only screen and (min-width: 600px) {
      .model_dealer .dealer_name {
        font-size: 1.2em; } }
  .model_dealer .dealer_website {
    font-size: 0.8em; }
    @media only screen and (min-width: 600px) {
      .model_dealer .dealer_website {
        font-size: 1em; } }
  .model_dealer .dealer_location {
    font-size: 0.8em;
    font-style: italic; }
    @media only screen and (min-width: 600px) {
      .model_dealer .dealer_location {
        font-size: 1em; } }

.dealer_stock {
  text-align: center; }
  .dealer_stock ul {
    list-style-type: none; }
  .dealer_stock .signature_dealer {
    margin: 0 0 2em 0;
    text-align: center; }
    .dealer_stock .signature_dealer a {
      background-color: #1c1c1c;
      border: 1px solid #1c1c1c;
      color: #fff;
      display: block;
      font-size: 0.7em;
      margin: 0.7em auto 0 auto;
      padding: 0.8em 0.65em;
      text-decoration: none;
      text-transform: uppercase;
      width: 30%; }
      .dealer_stock .signature_dealer a:hover {
        border: 1px solid #c41230;
        background-color: #c41230;
        color: #fff; }
  .dealer_stock h1 img {
    max-width: 70%; }
  .dealer_stock .dealer_name {
    font-size: 1.3em;
    margin: 0px auto;
    padding: 0 0 0 0; }
  .dealer_stock .dealer_location {
    color: #ccc;
    font-size: 0.8em;
    text-transform: uppercase; }
  .dealer_stock .full_dealer_link {
    margin: 0px auto;
    text-align: center; }
    .dealer_stock .full_dealer_link a {
      background-color: transparent;
      border: 1px solid #fff;
      color: #fff;
      display: block;
      font-size: 1em;
      padding: 1em 0.75em;
      text-transform: uppercase;
      margin: 1.5em auto 2em auto;
      max-width: 300px;
      text-decoration: none;
      font-size: 1em; }
      .dealer_stock .full_dealer_link a:hover {
        background-color: #1c1c1c;
        border: 1px solid #1c1c1c;
        color: #fff; }

/* colors -------------------------- */
#model_colors {
  padding: 0 0 0 0;
  list-style-type: none; }
  #model_colors img {
    max-width: 150px; }
  #model_colors li {
    list-style-type: none; }

.color_subtext {
  color: #ccc;
  font-size: 0.9em;
  margin: 2em 0;
  text-align: center; }
  .color_subtext + .model_section_tagline {
    margin: 5em 0 2em 0; }

.colors li {
  max-width: 150px; }
.colors .color_name {
  margin: 1em 0 0 0;
  font-size: 1em; }
  .colors .color_name span {
    display: block;
    color: #ccc;
    font-size: 0.75em; }

.owl-nav {
  font-size: 50px; }

.owl-prev {
  font-size: 60px;
  width: 15px;
  height: 100px;
  position: absolute;
  top: 40%;
  margin-left: -20px;
  display: block !important;
  border: 0px solid black; }

.owl-next {
  font-size: 60px;
  width: 15px;
  height: 100px;
  position: absolute;
  top: 40%;
  right: -25px;
  display: block !important;
  border: 0px solid black; }

.owl-prev i,
.owl-next i {
  transform: scale(1, 6);
  color: #ccc; }

/* artist package --------------------- */
.artist_package_specs p {
  font-size: 1em;
  line-height: 1.4em;
  margin: 0px auto;
  text-align: center;
  width: 95%; }
  @media only screen and (min-width: 600px) {
    .artist_package_specs p {
      width: 80%; } }
.artist_package_specs p + p {
  margin: 1.5em auto 0 auto; }
.artist_package_specs button {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  display: block;
  font-size: 1em;
  padding: 1em 0.75em;
  text-transform: uppercase;
  margin: 1.5em auto 2em auto;
  width: 200px; }
  .artist_package_specs button:hover {
    background-color: #1c1c1c;
    border: 1px solid #1c1c1c;
    color: #fff; }

.artist_package_specs_table {
  margin: 0 auto; }

.artist_package_colors {
  margin: 3em auto 0 auto; }
  .artist_package_colors h3 {
    font-size: 1.75em;
    text-align: center; }
  .artist_package_colors ul {
    font-size: 0.8em; }
  .artist_package_colors li {
    line-height: 2em;
    margin: 0;
    padding: 0; }

#artist_package_details_container {
  display: none; }

/* accolades ------------------- */
@media only screen and (min-width: 600px) {
  .accolades .review_first {
    max-width: 80%;
    margin: 0px auto;
    text-align: center; } }
.accolades .review_first blockquote {
  font-size: 1em;
  line-height: 1.4em; }
  @media only screen and (min-width: 600px) {
    .accolades .review_first blockquote {
      font-size: 1.15em;
      line-height: 1.5em; } }
@media only screen and (min-width: 600px) {
  .accolades .review_first p {
    font-size: 1.5em; } }
.accolades .review_first .review_link {
  margin: 20px 0 0 40px;
  font-size: 0.8em;
  font-style: italic; }
  @media only screen and (min-width: 600px) {
    .accolades .review_first .review_link {
      margin: 20px 0 0 0; } }
@media only screen and (min-width: 600px) {
  .accolades .review_first .reviewer_name {
    margin: 0 0 0 0;
    padding: 0; } }
.accolades a {
  font-style: normal; }
  .accolades a:link, .accolades a:visited {
    color: #ccc;
    text-decoration: underline; }
  .accolades a:active, .accolades a:hover {
    color: #fff;
    text-decoration: underline; }
.accolades img {
  margin: 1em 40px; }

.main_quote {
  font-size: 1.2em;
  font-style: italic;
  line-height: 1.4em;
  margin: 0 auto;
  padding: 5px 0 45px 0;
  text-align: center; }
  .main_quote span {
    display: block;
    font-style: normal;
    font-weight: bold; }
  .main_quote .reviewer_name {
    margin: 0 0 0 0; }

.review {
  margin: 0 0 30px 0;
  padding: 0; }

.reviewer_name {
  font-weight: bold;
  display: block;
  margin: 0 0 0 40px;
  padding: 0; }

/* color samples ---------------------- */
.color_samples {
  margin: 0px auto;
  padding: 0;
  width: 100%; }
  .color_samples li {
    list-style-type: none; }
  .color_samples div {
    padding: 3% 3%;
    text-align: left; }
  .color_samples h3 {
    font-weight: normal;
    font-size: 16px; }
    .color_samples h3 span {
      color: #ccc;
      display: block;
      font-size: 0.75em;
      font-style: italic;
      margin: 1em auto 0 auto;
      padding: 0 0 0 0; }
  .color_samples img {
    max-width: 100%; }

.color_notice {
  text-align: center;
  font-size: 0.9em;
  font-style: italic; }

.private_stock_color_list {
  margin: 0px auto;
  width: 95%; }
  @media only screen and (min-width: 600px) {
    .private_stock_color_list {
      width: 85%; } }
  .private_stock_color_list h3 {
    font-size: 1.75em;
    text-align: center; }
  .private_stock_color_list ul {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5em;
    font-size: 0.8em;
    list-style-type: none;
    margin: 0;
    padding: 0; }
    @media only screen and (min-width: 600px) {
      .private_stock_color_list ul {
        grid-template-columns: repeat(5, 1fr); } }
  .private_stock_color_list li {
    margin: 0;
    padding: 0; }

.other_signature_models ul {
  margin: 1em auto 0 auto;
  padding: 0;
  width: 85%; }
  @media only screen and (min-width: 600px) {
    .other_signature_models ul {
      margin: 3em auto 0 auto; } }
  .other_signature_models ul li {
    text-align: center; }
    .other_signature_models ul li + li {
      margin: 1.5em 0 0 0; }
      @media only screen and (min-width: 600px) {
        .other_signature_models ul li + li {
          margin: 0 0 0 0; } }
.other_signature_models p {
  margin: 1em auto 0 auto;
  max-width: 55%;
  text-align: center; }
.other_signature_models a:link, .other_signature_models a:visited {
  color: #A9BDD7;
  text-decoration: none; }
.other_signature_models a:active, .other_signature_models a:hover {
  color: #A9BDD7;
  text-decoration: underline; }

/* Archon Circuit Feature --------------*/
.amp_circuit img {
  display: block;
  max-width: 100%;
  margin: 0 auto 2em auto; }

.amp_details .internals_link {
  display: block; }
  @media only screen and (min-width: 600px) {
    .amp_details .internals_link {
      display: none; } }
.amp_details .internals_no_link {
  display: none;
  width: 90%; }
  @media only screen and (min-width: 600px) {
    .amp_details .internals_no_link {
      display: block; } }
.amp_details ul {
  margin: 0 0 0 0;
  padding: 0 0 0 0; }
  .amp_details ul li a:link, .amp_details ul li a:visited {
    text-decoration: none;
    color: #A9BDD7; }
  .amp_details ul li a:active, .amp_details ul li a:hover {
    text-decoration: none;
    color: #d2dfff; }
  .amp_details ul li + li {
    margin: 2em 0 0 0; }

.guitarofthemonth {
  margin: 5em 0; }
  .guitarofthemonth h2 {
    margin: 0 0 2em 0;
    font-size: 1.5em;
    text-align: center;
    text-transform: uppercase; }
    .guitarofthemonth h2 span {
      display: block;
      font-size: 2em;
      text-transform: none; }
  .guitarofthemonth ul {
    margin: 0px auto;
    padding: 0; }
    .guitarofthemonth ul li {
      text-align: center; }
      .guitarofthemonth ul li + li {
        margin: 0 0 0 0; }
  .guitarofthemonth img {
    margin: 0px auto 1em auto; }
  .guitarofthemonth p span {
    display: block; }

@media only screen and (min-width: 600px) {
  .video {
    padding: 25px; } }

@media only screen and (min-width: 600px) {
  .video_single img {
    max-width: 100%; } }

@media only screen and (min-width: 1030px) {
  .product_container {
    max-width: 1200px; } }

.matching_cabinet h2 {
  text-align: center; }

.news {
  background-color: #141414;
  overflow: hidden;
  padding: 0 20px 80px 20px;
  clear: both; }
  @media only screen and (min-width: 768px) {
    .news {
      padding: 40px 20px; } }
  .news h1 {
    font-size: 2em; }
  .news .news_story {
    max-width: 100%; }
    .news .news_story + .news_story {
      margin-top: 20px; }
      @media only screen and (min-width: 768px) {
        .news .news_story + .news_story {
          margin-top: 70px; } }
    @media only screen and (min-width: 768px) {
      .news .news_story {
        max-width: 80%; } }
    .news .news_story img {
      max-width: 100%;
      padding: 1em 0; }
    .news .news_story p {
      color: #fff;
      font-family: "Source Sans Pro", sans-serif;
      font-size: 1em;
      line-height: 1.2em; }

/* Top Story */
.top_story {
  margin: 0 0 30px 0;
  padding-bottom: 20px;
  border-bottom: 1px dotted #333;
  max-width: 100%; }
  @media only screen and (min-width: 600px) {
    .top_story {
      max-width: 85%; } }
  .top_story img {
    max-width: 100%;
    padding: 1em 0; }
  .top_story p {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.2em;
    line-height: 1.4em;
    width: 100%; }
    @media only screen and (min-width: 600px) {
      .top_story p {
        width: 85%; } }
  .top_story .date {
    display: block;
    font-size: .9em;
    color: #888;
    margin: 0 0 0 0; }

.topstoryheadline {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  font-size: 1.5em; }
  .topstoryheadline a:link,
  .topstoryheadline a:visited {
    color: #fff;
    text-decoration: none; }
  .topstoryheadline a:active,
  .topstoryheadline a:hover {
    color: #fff;
    text-decoration: underline; }
  @media only screen and (min-width: 768px) {
    .topstoryheadline {
      font-size: 1.7em; } }

.topstory_subheader {
  color: #ccc;
  margin-top: 10px; }
  .topstory_subheader font {
    family: sans-serif;
    weight: normal;
    size: .9em; }

.readmore {
  padding: 1em 0; }
  .readmore a:link,
  .readmore a:visited {
    color: #A9BDD7;
    text-decoration: none; }
  .readmore a:active,
  .readmore a:hover {
    color: #A9BDD7;
    text-decoration: underline; }

/* Secondary Stories */
.news_stories {
  max-width: 100%; }
  @media only screen and (min-width: 600px) {
    .news_stories {
      max-width: 85%; } }
  .news_stories + .news_stories {
    margin-top: 20px; }
    @media only screen and (min-width: 768px) {
      .news_stories + .news_stories {
        margin-top: 0px; } }
  .news_stories img {
    display: none; }
    @media only screen and (min-width: 600px) {
      .news_stories img {
        display: block; } }
  .news_stories p {
    display: none; }
    @media only screen and (min-width: 600px) {
      .news_stories p {
        display: block; } }
  .news_stories p a:link,
  .news_stories p a:visited {
    color: #A9BDD7;
    text-decoration: none; }
  .news_stories p a:active,
  .news_stories p a:hover {
    color: #A9BDD7;
    text-decoration: underline; }
  .news_stories .date {
    display: block;
    font-size: .75em;
    color: #888;
    margin: 0 0 0 0; }

.news_stories_contain {
  margin: 30px 0 0 0; }
  @media only screen and (min-width: 768px) {
    .news_stories_contain {
      margin: 0 0 0 0; } }

/* Top Story */
.storyheadline {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  font-size: 1.2em; }
  .storyheadline a:link,
  .storyheadline a:visited {
    color: #fff;
    text-decoration: none; }
  .storyheadline a:active,
  .storyheadline a:hover {
    color: #fff;
    text-decoration: underline; }

.story_link {
  margin-top: 18px; }
  .story_link a:link,
  .story_link a:visited {
    color: #A9BDD7;
    text-decoration: none; }
  .story_link a:active,
  .story_link a:hover {
    color: #A9BDD7;
    text-decoration: underline; }

/* More News */
.recentnewslist {
  margin: 30px 0;
  max-width: 84%;
  display: none; }
  @media only screen and (min-width: 600px) {
    .recentnewslist {
      display: block; } }
  .recentnewslist ul {
    margin: 10px 0 0 15px;
    padding: 0;
    list-style-type: none; }
  .recentnewslist h3 {
    color: #fff;
    display: none;
    margin-bottom: 15px; }
    @media only screen and (min-width: 600px) {
      .recentnewslist h3 {
        display: block;
        background-color: #333;
        margin: 0 0 25px 0;
        padding: 10px 0 10px 15px;
        text-transform: uppercase; } }
  @media only screen and (min-width: 600px) {
    .recentnewslist h4 {
      font-family: "Source Sans Pro", sans-serif;
      font-weight: bold;
      text-transform: uppercase;
      margin: 0;
      padding: 0; } }
  @media only screen and (min-width: 600px) {
    .recentnewslist li {
      margin-bottom: 20px; } }
  .recentnewslist li + li {
    margin-top: 10px; }
  .recentnewslist .date {
    color: #ccc;
    font-size: .7em; }
    @media only screen and (min-width: 600px) {
      .recentnewslist .date {
        margin: 0;
        padding: 0; } }
  .recentnewslist a {
    color: #fff; }
  .recentnewslist a:link,
  .recentnewslist a:visited {
    text-decoration: none;
    font-weight: normal; }
  .recentnewslist a:active,
  .recentnewslist a:hover {
    text-decoration: underline;
    font-weight: normal; }

.archiveslink {
  margin: 30px 0;
  border-bottom: 1px dotted #333;
  padding-bottom: 20px; }
  @media only screen and (min-width: 600px) {
    .archiveslink {
      padding-bottom: 25px; } }
  @media only screen and (min-width: 768px) {
    .archiveslink {
      border-bottom: none; } }
  .archiveslink a {
    color: #A9BDD7; }
  .archiveslink a:link,
  .archiveslink a:visited {
    text-decoration: none;
    font-weight: normal; }
  .archiveslink a:active,
  .archiveslink a:hover {
    text-decoration: underline;
    font-weight: normal; }

/* Connect */
.connect_news_contain {
  border-bottom: 1px dotted #333;
  overflow: auto;
  margin: 0px auto;
  text-align: center;
  padding: 20px 0 50px 0; }
  @media only screen and (min-width: 600px) {
    .connect_news_contain {
      border-bottom: 1px dotted #333; } }
  @media only screen and (min-width: 768px) {
    .connect_news_contain {
      padding: 0;
      text-align: left; } }

.connect_header {
  color: #fff;
  text-transform: uppercase;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.75em;
  margin: 0 0 10px 0;
  text-transform: uppercase; }

#connect_news {
  padding: 0;
  list-style-type: none;
  text-align: center;
  width: 235px;
  margin: 0px auto; }
  @media only screen and (min-width: 768px) {
    #connect_news {
      margin: 0 0 0 0; } }

#connect_news li {
  float: left;
  margin-right: 7px; }

#connect_news li a {
  background-image: url(/imgs/network_sprite_32.png);
  background-repeat: no-repeat;
  height: 32px;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  width: 32px; }
  @media only screen and (min-width: 768px) {
    #connect_news li a {
      margin: 0 0 70px 0;
      padding: 0;
      list-style-type: none;
      text-align: left; } }

a.connect_facebook {
  background-position: 0px 0; }

a.connect_facebook:hover {
  background-position: 0px -32px; }

a.connect_twitter {
  background-position: -32px 0; }

a.connect_twitter:hover {
  background-position: -32px -32px; }

a.connect_youtube {
  background-position: -64px 0; }

a.connect_youtube:hover {
  background-position: -64px -32px; }

a.connect_google {
  background-position: -96px 0; }

a.connect_google:hover {
  background-position: -96px -32px; }

a.connect_flickr {
  background-position: -128px 0; }

a.connect_flickr:hover {
  background-position: -128px -32px; }

a.connect_instagram {
  background-position: -160px 0; }

a.connect_instagram:hover {
  background-position: -160px -32px; }

/* Events */
.myprs {
  display: block;
  border-bottom: 1px dotted #333;
  clear: both;
  padding: 2em 0;
  text-align: left;
  max-width: 100%; }
  @media only screen and (min-width: 600px) {
    .myprs {
      overflow: auto;
      margin: 0px auto; } }
  @media only screen and (min-width: 768px) {
    .myprs {
      padding: 25px 30px 2em 0; } }
  .myprs p {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    line-height: 1.2em; }
    @media only screen and (min-width: 600px) {
      .myprs p {
        padding: 0 10%; } }
    @media only screen and (min-width: 768px) {
      .myprs p {
        padding: 0 0; } }
  .myprs img {
    max-width: 100%; }

.myprs_header {
  color: #fff;
  text-transform: uppercase;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.75em;
  margin: 0 0 1.25em 0;
  text-transform: uppercase; }

.myprs + .myprs {
  margin: 2em 0 0 0; }
.myprs a:link, .myprs a:visited {
  color: #A9BDD7;
  text-decoration: none; }
.myprs a:active, .myprs a:hover {
  color: #A9BDD7;
  text-decoration: underline; }

.myprs_name {
  display: block;
  font-size: 1.25em;
  margin: 10px 0 5px 0; }

/* Newsletter Opt-In */
.newsletter_optin {
  border-bottom: 1px dotted #333;
  clear: both;
  padding: 25px 0 20px 0;
  text-align: center;
  max-width: 100%; }
  @media only screen and (min-width: 600px) {
    .newsletter_optin {
      overflow: auto;
      margin: 0px auto;
      width: 100%; } }
  @media only screen and (min-width: 768px) {
    .newsletter_optin {
      padding: 25px 30px 20px 0;
      text-align: left; } }
  .newsletter_optin .newsletter_header {
    color: #fff;
    text-transform: uppercase;
    font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 1.75em;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    text-align: left; }
  .newsletter_optin p {
    color: #fff;
    font-size: 13px;
    line-height: 16px; }
    @media only screen and (min-width: 600px) {
      .newsletter_optin p {
        padding: 0 10%; } }
    @media only screen and (min-width: 768px) {
      .newsletter_optin p {
        padding: 0 0; } }
    .newsletter_optin p a {
      color: #afb0d2; }
  .newsletter_optin p a:link,
  .newsletter_optin p a:visited {
    text-decoration: none; }
  .newsletter_optin p a:active,
  .newsletter_optin p a:hover {
    text-decoration: underline; }
  .newsletter_optin form {
    text-align: center;
    padding: 0 0 0 0;
    width: 100%; }
    @media only screen and (min-width: 600px) {
      .newsletter_optin form {
        text-align: center;
        width: 75%;
        margin: 0px auto; } }
    @media only screen and (min-width: 768px) {
      .newsletter_optin form {
        text-align: left;
        width: 100%; } }
    .newsletter_optin form table {
      width: 100%; }
    .newsletter_optin form input {
      width: 100%;
      box-sizing: border-box;
      display: block; }
    .newsletter_optin form .email {
      display: block;
      font-size: 1.25em;
      text-align: center;
      margin: 10px 0 10px 0; }
      @media only screen and (min-width: 768px) {
        .newsletter_optin form .email {
          text-align: left; } }
    .newsletter_optin form .submit {
      font-size: 1em;
      font-family: "Source Sans Pro", sans-serif;
      background-color: #333;
      color: #fff;
      cursor: pointer;
      margin: 10px 0 20px 0;
      text-transform: uppercase;
      border: none;
      padding: 10px 0; }
      .newsletter_optin form .submit:hover {
        background-color: #444; }
      @media only screen and (min-width: 600px) {
        .newsletter_optin form .submit {
          background-color: #333;
          color: #fff;
          cursor: pointer;
          margin: 10px 0 20px 0;
          text-transform: uppercase;
          border: none;
          padding: 10px 0; } }

.newsletter_header {
  color: #fff;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.5em;
  font-weight: normal;
  margin: 0 0 10px 0;
  text-transform: uppercase; }

/* Twitter Feed */
.news_twitter {
  display: none;
  text-align: center; }
  @media only screen and (min-width: 600px) {
    .news_twitter {
      max-width: 75%;
      display: block;
      margin: 30px auto; } }
  @media only screen and (min-width: 768px) {
    .news_twitter {
      border-bottom: 1px dotted #333;
      text-align: left;
      max-width: 100%;
      padding: 0 0 30px 0; } }

.twitterfeedheader {
  display: none; }

/* Individual Stories */
.newsstorycontain {
  background-color: #141414;
  clear: both;
  padding: 30px 1%; }
  @media only screen and (min-width: 768px) {
    .newsstorycontain {
      max-width: 100%; } }

.newsstorybody {
  max-width: 85%;
  margin: 0px auto; }
  @media only screen and (min-width: 600px) {
    .newsstorybody {
      max-width: 75%; } }
  @media only screen and (min-width: 768px) {
    .newsstorybody {
      max-width: 75%;
      margin: 0px auto; } }

.storyheading {
  border-bottom: 1px dotted #333;
  margin-bottom: 30px; }
  .storyheading h1 {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.4em;
    font-weight: bold;
    text-transform: uppercase; }
    @media only screen and (min-width: 768px) {
      .storyheading h1 {
        font-size: 2em; } }
  .storyheading h2 {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.1em;
    font-weight: normal;
    margin-top: 10px; }
    @media only screen and (min-width: 768px) {
      .storyheading h2 {
        font-size: 1.2em;
        margin-top: 10px; } }
  .storyheading small {
    color: #999;
    display: block;
    margin-top: 15px;
    font-family: "Source Sans Pro", sans-serif; }

.news_social {
  margin: 20px 0;
  text-align: right; }

.storyimage img {
  max-width: 100%;
  margin-bottom: 20px;
  width: 100%; }

.storybody p {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.2em;
  line-height: 1.4em;
  margin: 0px auto;
  width: 100%; }
@media only screen and (min-width: 600px) {
  .storybody p {
    font-size: 1.2em;
    line-height: 1.4em;
    width: 80%; } }
.storybody p + p {
  margin-top: 20px; }
.storybody p a:link,
.storybody p a:visited {
  color: #A9BDD7;
  text-decoration: none; }
.storybody p a:active,
.storybody p a:hover {
  color: #A9BDD7;
  text-decoration: underline; }
.storybody iframe {
  display: block;
  max-width: 90%;
  margin: 30px 0; }
.storybody img {
  max-width: 100%; }

.backtonews {
  display: block;
  font-family: "Source Sans Pro", sans-serif; }
  .backtonews a {
    display: block;
    color: #fff;
    margin-top: 50px;
    padding: 10px;
    text-decoration: none;
    text-transform: uppercase;
    width: 120px; }
  .backtonews a:link,
  .backtonews a:visited {
    background-color: #778597; }
  .backtonews a:active,
  .backtonews a:hover {
    background-color: #778597; }

/* Archives */
.news_archives {
  margin: 0px auto;
  width: 80%; }
  .news_archives ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
  .news_archives ul + ul {
    margin-top: 20px; }
  .news_archives h1 {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    font-size: 25px;
    margin-bottom: 15px;
    text-decoration: none; }
  .news_archives h2 {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    font-size: 19px;
    margin: 45px 0 20px 0;
    text-transform: uppercase; }

.news_archives_header {
  border-bottom: 1px solid #333;
  padding-bottom: 20px; }

.select_a_year {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1em; }

.year_list {
  display: inline;
  font-family: "Source Sans Pro", sans-serif; }
  .year_list li {
    display: inline; }
  .year_list a {
    padding: 5px; }
  .year_list a:link,
  .year_list a:visited {
    color: #A9BDD7;
    text-decoration: none; }
  .year_list a:active,
  .year_list a:hover {
    background-color: #A9BDD7;
    color: #fff;
    text-decoration: none; }

.month_news_archive {
  margin: 25px 0; }

.story_title {
  font-family: "Source Sans Pro", sans-serif; }
  .story_title a:link,
  .story_title a:visited {
    color: #A9BDD7;
    text-decoration: none; }
  .story_title a:active,
  .story_title a:hover {
    color: #A9BDD7;
    text-decoration: underline; }

.story_date {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
  font-style: italic;
  margin-top: 7px; }

.news_aside {
  /* Events */ }
  .news_aside .events {
    display: block;
    border-bottom: 1px dotted #333;
    clear: both;
    padding: 2em 0;
    text-align: center;
    max-width: 100%;
    margin: 0px auto; }
    @media only screen and (min-width: 600px) {
      .news_aside .events {
        overflow: auto;
        margin: 0px auto; } }
    @media only screen and (min-width: 768px) {
      .news_aside .events {
        padding: 25px 30px 2em 0;
        text-align: left; } }
    .news_aside .events ul {
      list-style-type: none;
      color: #fff;
      font-size: 13px;
      line-height: 16px;
      margin: 0;
      padding: 0; }
    @media only screen and (min-width: 600px) {
      .news_aside .events p {
        padding: 0 10%; } }
    @media only screen and (min-width: 768px) {
      .news_aside .events p {
        padding: 0 0; } }
  .news_aside .events_header {
    color: #fff;
    text-transform: uppercase;
    font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 1.75em;
    margin: 0 0 1.25em 0;
    text-transform: uppercase; }
  .news_aside .event {
    margin: 2em 0 0 0; }
    .news_aside .event ul {
      max-width: 100%;
      float: none; }
    .news_aside .event + .event {
      margin: 2em 0 0 0; }
    .news_aside .event a:link, .news_aside .event a:visited {
      color: #A9BDD7;
      text-decoration: none; }
    .news_aside .event a:active, .news_aside .event a:hover {
      color: #A9BDD7;
      text-decoration: underline; }
  .news_aside .event_name {
    display: block;
    font-size: 1.25em;
    margin: 10px 0 5px 0; }
  .news_aside .more_events {
    margin: 2.5em 0 1em 0;
    text-transform: uppercase;
    font-size: 1em; }
    .news_aside .more_events a {
      padding: 0.5em 1em; }
      .news_aside .more_events a:link, .news_aside .more_events a:visited {
        color: #fff;
        background-color: #333;
        text-decoration: none; }
      .news_aside .more_events a:active, .news_aside .more_events a:hover {
        background-color: #444;
        color: #fff;
        text-decoration: none; }

#newsletter {
  background-color: #000;
  margin: 0px auto;
  padding: 0 0 3em 0;
  width: 100%;
  overflow: hidden;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif; }

#newsletter h1 {
  color: #fff;
  font-size: 38px;
  font-weight: normal;
  margin: 30px 0px 20px 0px;
  text-transform: uppercase; }

#newsletter p {
  color: #fff;
  font-size: 16px; }

#newsletter p + p {
  margin-top: 20px; }

#target {
  color: #fff; }

#newsletterexample {
  float: left;
  width: 300px;
  padding: 0 0 0 1em; }

#newslettersignup {
  float: left;
  max-width: 500px;
  padding: 0 0 0 1em; }

#newslettersubscribe {
  margin: 30px 0px 0px 0px; }

#privacynotice {
  font-size: 15px;
  font-style: italic; }

#privacynotice a:link, #privacynotice a:visited {
  color: #AED1F3;
  text-decoration: none; }

#privacynotice a:active, #privacynotice a:hover {
  color: #AED1F3;
  text-decoration: underline; }

#target {
  margin: 20px 0px 30px 0px;
  font-weight: bold;
  font-style: italic; }

#target p a:link, #target p a:visited {
  color: #AED1F3;
  text-decoration: none; }

#target p a:active, #target p a:hover {
  color: #AED1F3;
  text-decoration: underline; }

#unsubscribelink a:link, #unsubscribelink a:visited {
  color: #AED1F3;
  text-decoration: none; }

#unsubscribelink a:active, #unsubscribelink a:hover {
  color: #AED1F3;
  text-decoration: underline; }

/* Newsletter */
#newsletter_optin {
  margin: 0px auto;
  width: 700px; }

#newsletter_optin_success {
  background-color: #000;
  margin: 0px auto;
  padding: 0 0 3em 0;
  max-width: 100%; }

#newsletter_optin_success a:link, #newsletter_optin_success a:visited {
  color: #AED1F3;
  text-decoration: none; }

#newsletter_optin_success a:active, #newsletter_optin_success a:hover {
  color: #AED1F3;
  text-decoration: underline; }

#newsletter_optin_success h2 {
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 30px;
  font-weight: normal;
  padding: 0px 0px 20px 0px; }

#newsletter_optin_success p {
  color: #fff;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px; }

#newsletter_optin_success p + p {
  margin-top: 15px; }

/* hero --------------------- */
.products_hero {
  background-color: #0e0e0e;
  padding: 0 0 1.5em 0; }
  @media only screen and (min-width: 768px) {
    .products_hero {
      padding: 0 0 3em 0; } }
  .products_hero img {
    max-width: 100%; }

.products_hero_previous_year {
  background-color: #0e0e0e;
  padding: 3em; }
  @media only screen and (min-width: 768px) {
    .products_hero_previous_year {
      padding: 0 0 3em 0; } }
  .products_hero_previous_year h1 {
    color: #fff;
    padding: 2em 0 0 0;
    text-align: center;
    font-size: 3em; }
  .products_hero_previous_year p {
    color: #ccc;
    text-align: center; }
    .products_hero_previous_year p a:link, .products_hero_previous_year p a:visited {
      color: #fff;
      text-decoration: none; }
    .products_hero_previous_year p a:active, .products_hero_previous_year p a:hover {
      color: #fff;
      text-decoration: underline; }

/* tabs ------------------------- */
ul.tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-align: center;
  background-color: #0e0e0e; }
  ul.tabs li {
    background: #525252;
    color: #fff;
    padding: 10px 25px;
    cursor: pointer;
    font-size: 1.3em;
    display: block; }
    @media only screen and (min-width: 768px) {
      ul.tabs li {
        border-top: 1px solid #525252;
        border-left: 1px solid #525252;
        border-right: 1px solid #525252; } }
    @media only screen and (min-width: 768px) {
      ul.tabs li {
        display: inline-block; } }
    ul.tabs li:hover {
      color: #333;
      background: #fdffd7; }
      @media only screen and (min-width: 768px) {
        ul.tabs li:hover {
          border-top: 1px solid #fdffd7;
          border-left: 1px solid #fdffd7;
          border-right: 1px solid #fdffd7; } }
  ul.tabs li.current {
    background: #fdffd7;
    color: #333; }
    @media only screen and (min-width: 768px) {
      ul.tabs li.current {
        background: #353537;
        color: #fff;
        border-top: 1px solid #353537;
        border-left: 1px solid #353537;
        border-right: 1px solid #353537; } }

.tab-content {
  display: none;
  padding: 15px; }

.tab-content.current {
  display: inherit; }

/* end tabs --------------------- */
/* Catalog Download ----------------*/
.product_catalog_download {
  border-top: 1px dotted #ccc;
  padding: 8em 0 4em 0;
  text-align: center;
  margin: 4em auto 0 auto; }
  .product_catalog_download img {
    text-align: center;
    display: block;
    max-width: 75px;
    margin: 0px auto;
    padding: 1em 0; }
  .product_catalog_download a {
    font-size: 1.25em;
    text-transform: uppercase; }
    .product_catalog_download a:link, .product_catalog_download a:visited {
      color: #fdffd7;
      text-decoration: underline; }
    .product_catalog_download a:active, .product_catalog_download a:hover {
      color: #fcffe6;
      text-decoration: none; }

/* end Catalog Download ------------*/
.full_products_container {
  background-color: #353537;
  padding: 3em 1em; }

.current_product_line {
  padding: 0 0 4em 0; }
  .current_product_line + .current_product_line {
    border-top: 1px dotted #ccc;
    padding: 4em 0 4em 0; }
  .current_product_line h2 {
    color: #fff;
    font-size: 3em;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif;
    margin: 0;
    padding: 0; }
  .current_product_line h3 {
    color: #fdffd7;
    font-size: 1.7em;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif;
    margin: 1.5em 0 0.5em 0;
    padding: 0; }
    .current_product_line h3 a:link, .current_product_line h3 a:visited {
      color: #fdffd7;
      text-decoration: underline; }
    .current_product_line h3 a:active, .current_product_line h3 a:hover {
      color: #fcffe6;
      text-decoration: none; }
  .current_product_line ul + h3 {
    margin: 1.5em 0 0.5em 0; }
  .current_product_line ul {
    margin: 0;
    padding: 0; }
    .current_product_line ul li {
      margin: 0.7em 0 0 0;
      padding: 0;
      list-style-type: none; }
      .current_product_line ul li a:link, .current_product_line ul li a:visited {
        color: #ccc;
        text-decoration: none; }
      .current_product_line ul li a:active, .current_product_line ul li a:hover {
        color: #fff;
        text-decoration: underline; }
  .current_product_line .newprod {
    color: #333;
    font-size: 0.5em;
    font-style: italic;
    background-color: #fdffd7;
    padding: 0.2em 0.4em;
    margin: 0 0 0 0.3em;
    vertical-align: middle; }

.line_tag {
  color: #d9d9d9;
  font-style: italic;
  margin: 0.5em 0 0 0;
  padding: 0;
  font-family: Georgia, Times, 'Times New Roman', serif;
  font-size: 1em;
  width: 70%; }

.model_list div {
  padding: 0 1em 0 0; }

.pricelist_download {
  font-family: Arial,Helvetica, sans-serif;
  overflow: hidden;
  background-color: #141414;
  text-align: center;
  margin: 0px auto;
  width: 100%; }
  .pricelist_download a {
    font-size: 1em; }
    .pricelist_download a:link, .pricelist_download a:visited {
      background-color: #222;
      color: #ccc;
      text-decoration: none; }
    .pricelist_download a:active, .pricelist_download a:hover {
      background-color: #444;
      color: #fff;
      text-decoration: underline; }
  .pricelist_download span {
    display: block;
    line-height: 53px;
    float: left; }
  .pricelist_download img {
    float: left;
    padding: 0 20px 0 0;
    width: 10%; }

.pricelist_download_link {
  max-width: 600px;
  margin: 0px auto; }

.year_toggle {
  text-transform: uppercase;
  text-align: center;
  margin: 4em auto;
  margin: 10em auto 0 auto; }
  .year_toggle a {
    text-decoration: none;
    font-size: 100%;
    font-weight: normal;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.75em 1.8em;
    display: inline-block;
    overflow: hidden;
    transition: all 0.4s ease 0s;
    cursor: pointer; }
    .year_toggle a:active, .year_toggle a:hover {
      color: #222;
      border: 1px solid #fff;
      background: #fff; }

.previous_product_year_container {
  display: none;
  overflow: auto;
  background-color: #353537; }
  .previous_product_year_container h1 {
    font-family: "Source Sans Pro", sans-serif;
    color: #fff;
    text-align: center;
    font-weight: normal;
    text-transform: uppercase; }

.previous_product_year_background {
  background-color: #353537;
  overflow: auto; }

.previous_product_line {
  display: hidden;
  overflow: hidden;
  padding: 0 0 100px 0;
  width: 90%;
  margin: 0px auto; }
  .previous_product_line h2 {
    color: #fff;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 1.20em;
    font-weight: normal;
    text-transform: uppercase;
    margin-top: 40px; }
  .previous_product_line .product_column {
    padding: 0 23px; }
    .previous_product_line .product_column ul {
      font-size: 0.8em;
      list-style-type: none;
      padding: 0; }
      .previous_product_line .product_column ul li + li {
        margin-top: .75em; }
      .previous_product_line .product_column ul li a:link, .previous_product_line .product_column ul li a:visited {
        color: #ccc;
        text-decoration: none; }
      .previous_product_line .product_column ul li a:active, .previous_product_line .product_column ul li a:hover {
        color: #fff;
        text-decoration: underline; }

.product_family_hero, .product_family_hero.twochannel_family, .product_family_hero.acoustics_family, .product_family_hero.amplifiers_family, .product_family_hero.archon_family, .product_family_hero.bolton_family, .product_family_hero.core_family, .product_family_hero.corebass_family, .product_family_hero.hxda_family, .product_family_hero.grissom_family, .product_family_hero.s2_family, .product_family_hero.se_family, .product_family_hero.se_acoustics_family, .product_family_hero.sebass_family, .product_family_hero.sonzera_family {
  background-color: #101010;
  background-position: top;
  background-size: cover;
  overflow: hidden;
  min-height: 300px; }
  @media only screen and (min-width: 600px) {
    .product_family_hero, .product_family_hero.twochannel_family, .product_family_hero.acoustics_family, .product_family_hero.amplifiers_family, .product_family_hero.archon_family, .product_family_hero.bolton_family, .product_family_hero.core_family, .product_family_hero.corebass_family, .product_family_hero.hxda_family, .product_family_hero.grissom_family, .product_family_hero.s2_family, .product_family_hero.se_family, .product_family_hero.se_acoustics_family, .product_family_hero.sebass_family, .product_family_hero.sonzera_family {
      min-height: 532px; } }
  .product_family_hero .product_family_hero_overlay {
    background: rgba(0, 0, 0, 0.5);
    min-height: 300px; }
    @media only screen and (min-width: 600px) {
      .product_family_hero .product_family_hero_overlay {
        background: transparent;
        min-height: 500px; } }

.product_family_hero.twochannel_family {
  background-image: url(/imgs/product_line/2channelcustom_1200_532.jpg); }

.product_family_hero.acoustics_family {
  background-image: url(/imgs/product_line/bg_acoustics.jpg); }

.product_family_hero.amplifiers_family {
  background-image: url(/imgs/product_line/bg_amplifiers.jpg); }

.product_family_hero.archon_family {
  background-image: url(/imgs/products/archon_1200_532.jpg); }

.product_family_hero.bolton_family {
  background-image: url(/imgs/products/bolton_electrics_1200_532_2020.jpg); }

.product_family_hero.core_family {
  background-image: url(/imgs/products/core_1200_532_2020.jpg); }

.product_family_hero.corebass_family {
  background-image: url(/imgs/products/core_bass_1200_532_2018.jpg); }

.product_family_hero.hxda_family {
  background-image: url(/imgs/products/hxda_1200_532.jpg); }

.product_family_hero.grissom_family {
  background-image: url(/imgs/products/dgcustom_1200_532.jpg); }

.product_family_hero.s2_family {
  background-image: url(/imgs/products/s2_electrics_1200_532_2020.jpg); }

.product_family_hero.se_family {
  background-image: url(/imgs/products/se_electrics_1200_532_2020.jpg); }

.product_family_hero.se_acoustics_family {
  background-image: url(/imgs/products/se_acoustics_1200_532.jpg); }

.product_family_hero.sebass_family {
  background-image: url(/imgs/products/se_bass_1200_532_2020.jpg); }

.product_family_hero.sonzera_family {
  background-image: url(/imgs/products/sonzera_1200_532.jpg); }

.product_family_hero.twochannel_family {
  background-image: url(/imgs/products/2channelcustom_1200_532.jpg); }

.product_family_breadcrumbs {
  background: rgba(0, 0, 0, 0.5); }
  .product_family_breadcrumbs .product_family_breadcrumbs_inner {
    padding: 0.7em 1em; }
  .product_family_breadcrumbs ul {
    margin: 0 0 0 0;
    padding: 0 0 0 0; }
    .product_family_breadcrumbs ul li {
      color: #fff;
      font-size: 0.8em;
      display: inline;
      text-transform: uppercase; }
      .product_family_breadcrumbs ul li span {
        padding: 0 0.5em; }
      .product_family_breadcrumbs ul li a:link, .product_family_breadcrumbs ul li a:visited {
        color: #ccc;
        text-decoration: underline; }
      .product_family_breadcrumbs ul li a:active, .product_family_breadcrumbs ul li a:hover {
        color: #fff;
        text-decoration: none; }

.product_family_intro {
  padding: 0 0 5em 0; }
  .product_family_intro .product_family_intro_inner {
    margin: 100px auto 0px auto;
    width: 90%; }
    @media only screen and (min-width: 600px) {
      .product_family_intro .product_family_intro_inner {
        margin: 125px auto 0px auto;
        width: 85%; } }
  .product_family_intro h1 {
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 2.3em;
    margin: 0 0 0.5em 0;
    padding: 0 0 0 0;
    text-transform: uppercase;
    text-align: center; }
    @media only screen and (min-width: 600px) {
      .product_family_intro h1 {
        margin: 0 0 0 0;
        font-size: 2.375em;
        text-align: left; } }
  .product_family_intro p {
    color: #fff;
    margin: 0px auto;
    width: 80%;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    text-align: center; }
    @media only screen and (min-width: 600px) {
      .product_family_intro p {
        margin: 0 0 0 0;
        width: 40%;
        text-align: left; } }
  .product_family_intro .ghost_button {
    text-transform: uppercase;
    text-align: center;
    margin: 4em auto;
    margin: 1em 0;
    text-align: left; }
    .product_family_intro .ghost_button a {
      text-decoration: none;
      font-size: 100%;
      font-weight: normal;
      color: #fff;
      border: 1px solid #fff;
      padding: 0.75em 1.8em;
      display: inline-block;
      overflow: hidden;
      transition: all 0.4s ease 0s;
      cursor: pointer; }
      .product_family_intro .ghost_button a:active, .product_family_intro .ghost_button a:hover {
        color: #000;
        border: 1px solid #fff;
        background: #fff; }

.series_overview_container {
  width: 90%;
  margin: 0px auto; }
  @media only screen and (min-width: 600px) {
    .series_overview_container {
      width: 80%; } }

.series_overview_video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }
  .series_overview_video iframe,
  .series_overview_video object,
  .series_overview_video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.product_family_navigation {
  padding: 3em 0;
  background-color: #0e0e0e; }
  .product_family_navigation h1 {
    color: #fff;
    font-size: 2em;
    text-align: center;
    padding: 1em 0 0 0; }
    .product_family_navigation h1 span {
      color: #888; }
  .product_family_navigation h2 {
    font-size: 2.5em;
    margin: 0 0 0 0;
    padding: 0 0 0 0; }
    .product_family_navigation h2 span {
      color: #888; }

.family_selector_container {
  width: 80%;
  margin: 0px auto; }
  .family_selector_container h2 {
    text-align: center;
    font-size: 1.3em;
    color: #ccc;
    text-transform: uppercase;
    margin: 0 auto 1em 0; }

.family_selector {
  background-color: transparent;
  margin: 0px auto;
  text-align: center;
  width: 213px;
  list-style-type: none;
  margin: 0px auto;
  padding: 16px;
  text-align: center;
  text-transform: uppercase; }
  @media only screen and (min-width: 768px) {
    .family_selector {
      padding: 0 0 0 0; } }
  .family_selector:hover {
    background-color: transparent; }
  .family_selector .family_selector_dropdown {
    display: none;
    list-style-type: none;
    margin: 0px auto;
    padding: 0 0 0 0;
    width: 213px; }
    .family_selector .family_selector_dropdown li {
      border-bottom: 1px solid #666;
      font-size: 1.1em;
      padding: 0.7em 1em; }
    .family_selector .family_selector_dropdown a:link, .family_selector .family_selector_dropdown a:visited {
      color: #FFF699;
      text-decoration: none; }
    .family_selector .family_selector_dropdown a:active, .family_selector .family_selector_dropdown a:hover {
      color: #fdffb4;
      text-decoration: none; }
  .family_selector .select_a_family {
    background: url(/imgs/icons/down_arrow.png) top right no-repeat;
    background-size: 30px;
    border-bottom: 1px solid #666;
    font-size: 0.9em;
    margin: 0px auto;
    padding: 0.5em 0;
    text-align: center;
    width: 210px; }
    .family_selector .select_a_family a:link, .family_selector .select_a_family a:visited {
      color: #fff;
      text-decoration: none; }
    .family_selector .select_a_family a:active, .family_selector .select_a_family a:hover {
      color: #ccc;
      text-decoration: none; }

.series_list .series {
  margin: 0 0 1.5em 0;
  padding: 5px; }
  @media only screen and (min-width: 600px) {
    .series_list .series {
      margin: 0 0 3em 0; } }
  .series_list .series a:link,
  .series_list .series a:visited {
    text-decoration: none; }
  .series_list .series a:active,
  .series_list .series a:hover {
    text-decoration: none; }
  .series_list .series h2 {
    color: #fff;
    font-size: 1.3em;
    margin: 0 0 0.5em 0;
    padding: 0 0 0 0;
    text-transform: uppercase; }
  .series_list .series h3 {
    color: #fff;
    font-size: 0.8em;
    margin: 0 0 1em 0;
    padding: 0 0 0 0; }
  .series_list .series img {
    background-color: #000;
    margin: 0 0 0.5em 0;
    max-width: 100%;
    padding: 0 0 0 0;
    -webkit-transition: all 0.2s ease;
    /* Safari and Chrome */
    -moz-transition: all 0.2s ease;
    /* Firefox */
    -ms-transition: all 0.2s ease;
    /* IE 9 */
    -o-transition: all 0.2s ease;
    /* Opera */
    transition: all 0.2s ease; }
    .series_list .series img:hover {
      cursor: hand;
      -webkit-transform: scale(0.98);
      /* Safari and Chrome */
      -moz-transform: scale(0.98);
      /* Firefox */
      -ms-transform: scale(0.98);
      /* IE 9 */
      -o-transform: scale(0.98);
      /* Opera */
      transform: scale(0.98); }

.models_list {
  background-color: none;
  margin: 0px auto;
  padding: 0 0 0 0; }
  .models_list h2 {
    color: #fff;
    font-size: 1.5em; }
  @media only screen and (min-width: 600px) {
    .models_list {
      background-color: #171717;
      padding: 2em 0 4em 0; } }
  .models_list .model {
    background: black;
    padding: 2em 1em 1em 1em;
    margin: 1.5em 0 0 0;
    width: 75%; }
    @media only screen and (min-width: 600px) {
      .models_list .model {
        margin: 1em 0 0 0; } }
    .models_list .model h2 {
      font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-size: 1em;
      margin: 0.7em 0 0 0;
      padding: 1em 0;
      text-align: center;
      text-decoration: none; }
      .models_list .model h2 a:link, .models_list .model h2 a:visited {
        color: #fff;
        text-decoration: none; }
      .models_list .model h2 a:active, .models_list .model h2 a:hover {
        color: #fff;
        text-decoration: underline; }
    .models_list .model h3 {
      color: #ccc;
      font-size: 0.8em;
      margin: 0.7em 0 0 0;
      padding: 0 0 0 0;
      text-align: center;
      text-transform: uppercase; }
    .models_list .model img {
      max-width: 100%;
      -webkit-transition: all 0.2s ease;
      /* Safari and Chrome */
      -moz-transition: all 0.2s ease;
      /* Firefox */
      -ms-transition: all 0.2s ease;
      /* IE 9 */
      -o-transition: all 0.2s ease;
      /* Opera */
      transition: all 0.2s ease; }
      .models_list .model img:hover {
        cursor: hand;
        -webkit-transform: scale(0.98);
        /* Safari and Chrome */
        -moz-transform: scale(0.98);
        /* Firefox */
        -ms-transform: scale(0.98);
        /* IE 9 */
        -o-transform: scale(0.98);
        /* Opera */
        transform: scale(0.98); }
  .models_list ul {
    color: #fff;
    list-style-type: none;
    margin: 1em 0 0 0;
    font-size: 0.6em;
    padding: 0 0 0 0;
    text-align: center; }
  .models_list .model_inner {
    background: #000;
    padding: 1em 1em 0 1em;
    margin: 0px auto;
    min-height: 500px;
    width: 100%;
    text-align: center; }
    @media only screen and (min-width: 600px) {
      .models_list .model_inner {
        padding: 2em 1em 1em 1em;
        min-height: 600px; } }
    @media only screen and (min-width: 768px) {
      .models_list .model_inner {
        min-height: 450px; } }
  .models_list + .models_list {
    margin: 2em auto 0 auto; }
    @media only screen and (min-width: 600px) {
      .models_list + .models_list {
        margin: 2em auto 0 auto; } }

.models_list_inner {
  width: 95%;
  margin: 0px auto; }

.product_family_video {
  background-color: #101010;
  padding: 3em 0; }
  .product_family_video div iframe {
    margin: 0px auto;
    width: 100%; }

.more_families {
  background-color: #101010;
  padding: 5em 0;
  margin: 0px auto; }
  .more_families a {
    text-decoration: none; }
  .more_families h1 {
    margin: 0 0 1em 0;
    padding: 0 0 0 0;
    text-align: center; }
  .more_families h2 {
    font-size: 1.2em;
    margin: 0 0 1em 0;
    padding: 0 0 0 0;
    text-align: center;
    text-transform: uppercase; }
  .more_families ul {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style-type: none; }
  .more_families li {
    background-color: #000;
    margin: 0px auto 1em auto;
    width: 80%;
    padding: 1em; }
  .more_families img {
    margin: 0 0 0.5em 0; }
  .more_families p {
    color: #fff;
    font-size: 0.8em;
    text-align: center; }

.international_customers_links {
  width: 75%;
  margin: 0px auto; }
  .international_customers_links h4 {
    color: #fff;
    font-size: 1.7em;
    text-align: center;
    text-transform: uppercase; }
  .international_customers_links p {
    color: #fff;
    text-align: center; }
  .international_customers_links a:link, .international_customers_links a:visited {
    color: #ccc;
    text-decoration: underline; }
  .international_customers_links a:active, .international_customers_links a:hover {
    color: #fff;
    text-decoration: none; }

/* extend */
.section_intro_extend, .ps_light .section_intro, .ps_medium .section_intro {
  margin: 0px auto;
  width: 90%;
  text-align: left;
  font-size: 1em;
  line-height: 1.3em; }
  @media only screen and (min-width: 768px) {
    .section_intro_extend, .ps_light .section_intro, .ps_medium .section_intro {
      font-size: 1.2em;
      line-height: 1.6em;
      text-align: center;
      width: 75%; } }
  .section_intro_extend + .section_intro_extend, .ps_light .section_intro + .section_intro_extend, .ps_medium .section_intro + .section_intro_extend, .ps_light .section_intro_extend + .section_intro, .ps_light .section_intro + .section_intro, .ps_medium .section_intro_extend + .section_intro, .ps_medium .section_intro + .section_intro {
    margin: 1em auto 0 auto; }

/* ------ */
.backgroundreveal, .bg_thisisprivatestock, .bg_electrics, .bg_acoustics {
  background: repeat scroll 0px 0px/cover; }
  @media only screen and (min-width: 768px) {
    .backgroundreveal, .bg_thisisprivatestock, .bg_electrics, .bg_acoustics {
      background-position: top;
      background-size: cover; } }
  .backgroundreveal blockquote, .bg_thisisprivatestock blockquote, .bg_electrics blockquote, .bg_acoustics blockquote {
    color: #fff;
    font-size: 1em;
    line-height: 1.6em;
    width: 90%;
    margin: 0px auto;
    padding: 6em 0 0 0;
    text-align: left; }
    @media only screen and (min-width: 768px) {
      .backgroundreveal blockquote, .bg_thisisprivatestock blockquote, .bg_electrics blockquote, .bg_acoustics blockquote {
        width: 70%; } }
    @media only screen and (min-width: 768px) {
      .backgroundreveal blockquote, .bg_thisisprivatestock blockquote, .bg_electrics blockquote, .bg_acoustics blockquote {
        padding: 6em 0 0 0; } }
    @media only screen and (min-width: 768px) {
      .backgroundreveal blockquote, .bg_thisisprivatestock blockquote, .bg_electrics blockquote, .bg_acoustics blockquote {
        font-size: 1.7em;
        line-height: 1.3em;
        text-align: center; } }
  .backgroundreveal p, .bg_thisisprivatestock p, .bg_electrics p, .bg_acoustics p {
    color: #fff;
    width: 90%;
    text-align: left;
    margin: 0px auto; }
    @media only screen and (min-width: 768px) {
      .backgroundreveal p, .bg_thisisprivatestock p, .bg_electrics p, .bg_acoustics p {
        text-align: center;
        width: 70%; } }

.privatestock {
  padding: 0 0 0 0; }
  @media only screen and (min-width: 768px) {
    .privatestock {
      padding: 0 0 0 0; } }

.privatestock_header h1 {
  color: #fff;
  font-weight: normal;
  font-size: 3em;
  font-family: "Source Sans Pro", sans-serif;
  margin: 0 0 22px 0;
  padding: 0 0 0 0;
  text-align: center; }
  .privatestock_header h1 a:link, .privatestock_header h1 a:visited {
    color: #fff;
    text-decoration: none; }
  .privatestock_header h1 a:active, .privatestock_header h1 a:hover {
    color: #ccc;
    text-decoration: none; }
.privatestock_header h1.subpage_header {
  font-size: 2.5em; }

.privatestock_nav {
  font-size: 1em;
  width: 75%;
  margin: 0px auto 2em auto;
  overflow: auto; }
  @media only screen and (min-width: 768px) {
    .privatestock_nav {
      width: 100%;
      margin: 0px auto; } }
  .privatestock_nav ul {
    text-align: center;
    margin: 0 0 1em 0;
    padding: 0 0 0 0; }
    .privatestock_nav ul li {
      display: block;
      margin: 1em 0 0 0;
      padding: 0 0 0 0; }
      @media only screen and (min-width: 768px) {
        .privatestock_nav ul li {
          display: inline;
          margin: 0 0 0 0;
          padding: 0 0.6em; } }
      .privatestock_nav ul li a:link, .privatestock_nav ul li a:visited {
        color: #fff;
        text-decoration: none; }
      .privatestock_nav ul li a:active, .privatestock_nav ul li a:hover {
        color: #fff;
        text-decoration: none;
        border-bottom: 2px solid #FFF699; }
  .privatestock_nav .col_one {
    display: block;
    text-align: left;
    float: left;
    width: 45%;
    padding: 0 1.75em 0 0; }
    @media only screen and (min-width: 768px) {
      .privatestock_nav .col_one {
        text-align: center;
        float: none;
        width: 100%;
        padding: 0 0 0 0; } }
    @media only screen and (min-width: 1200px) {
      .privatestock_nav .col_one {
        display: inline;
        text-align: center; } }
  .privatestock_nav .col_two {
    width: 45%;
    display: block;
    text-align: left;
    margin: 0 0 0 0;
    float: left; }
    @media only screen and (min-width: 768px) {
      .privatestock_nav .col_two {
        text-align: center;
        float: none;
        width: 100%;
        margin: 1em auto 1.5em auto; } }
    @media only screen and (min-width: 1200px) {
      .privatestock_nav .col_two {
        display: inline;
        margin: 0 0 0 0;
        text-align: center; } }

.privatestock_header_2019 {
  background-image: none;
  background-color: #000;
  background-position: auto;
  background-repeat: auto;
  display: block;
  width: 100%;
  padding: 0 0 1em 0; }
  @media only screen and (min-width: 768px) {
    .privatestock_header_2019 {
      background-image: url("/imgs/privatestock/privatestock_logo.png");
      background-color: #000;
      background-position: right 20px top 15px;
      background-repeat: no-repeat;
      padding: 0 0 0 0; } }
  .privatestock_header_2019 .page_title_container {
    margin: 0 auto;
    padding: 2em 0 0 0;
    width: 95%; }
    .privatestock_header_2019 .page_title_container .private_stock_link {
      display: block; }
      @media only screen and (min-width: 768px) {
        .privatestock_header_2019 .page_title_container .private_stock_link {
          display: inline; } }
      .privatestock_header_2019 .page_title_container .private_stock_link h1 {
        color: #fff;
        display: inline;
        font-weight: normal;
        font-size: 2em;
        font-family: "Source Sans Pro", sans-serif;
        margin: 0 0 0 0;
        padding: 0 0 0 0;
        text-align: center;
        text-transform: uppercase; }
        .privatestock_header_2019 .page_title_container .private_stock_link h1 a:link, .privatestock_header_2019 .page_title_container .private_stock_link h1 a:visited {
          color: #fff;
          text-decoration: none; }
        .privatestock_header_2019 .page_title_container .private_stock_link h1 a:active, .privatestock_header_2019 .page_title_container .private_stock_link h1 a:hover {
          color: #ccc;
          text-decoration: underline; }
      @media only screen and (min-width: 768px) {
        .privatestock_header_2019 .page_title_container .private_stock_link {
          text-align: left; } }
    .privatestock_header_2019 .page_title_container .page_title {
      display: block; }
      @media only screen and (min-width: 768px) {
        .privatestock_header_2019 .page_title_container .page_title {
          display: inline; } }
      .privatestock_header_2019 .page_title_container .page_title h1 {
        color: #fff;
        display: inline;
        font-weight: normal;
        font-size: 2em;
        font-family: "Source Sans Pro", sans-serif;
        margin: 0 0 0 0;
        padding: 0 0 0 0;
        text-align: center; }
        @media only screen and (min-width: 768px) {
          .privatestock_header_2019 .page_title_container .page_title h1 {
            text-align: left; } }
      .privatestock_header_2019 .page_title_container .page_title span {
        color: #727272;
        font-size: 2em;
        padding: 0 0 0 0;
        display: none; }
        @media only screen and (min-width: 768px) {
          .privatestock_header_2019 .page_title_container .page_title span {
            display: inline;
            padding: 0 0.3em; } }
  .privatestock_header_2019 .ps_nav_button {
    margin: 1.3em auto 0em auto;
    text-align: center;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    font-size: 1em;
    padding: 1em 0.75em;
    text-transform: uppercase; }
    .privatestock_header_2019 .ps_nav_button:hover {
      background-color: #1c1c1c;
      border: 1px solid #1c1c1c;
      color: #fff; }
    @media only screen and (min-width: 768px) {
      .privatestock_header_2019 .ps_nav_button {
        display: none; } }
  .privatestock_header_2019 .dropdown_indicator {
    background-image: none;
    background-position: auto;
    background-repeat: no-repeat;
    background-size: auto;
    margin: 0px auto;
    text-decoration: none; }
    @media only screen and (min-width: 768px) {
      .privatestock_header_2019 .dropdown_indicator {
        background-image: url(/imgs/icons/down_arrow_x2.png);
        background-repeat: no-repeat;
        background-position: 50% 100%, bottom;
        background-size: 44px;
        width: 100%; } }

.privatestock_header_2019 > nav > ul {
  background-color: #1c1c1c;
  display: none;
  list-style: none;
  margin: 0px auto;
  padding: 0 0 0 0;
  width: 100%;
  display: none;
  position: absolute;
  z-index: 1000; }
  @media only screen and (min-width: 768px) {
    .privatestock_header_2019 > nav > ul {
      background-color: transparent;
      display: flex;
      justify-content: space-around;
      margin: 0.5em 0 0 1.8em;
      position: relative;
      width: 74%; } }

.privatestock_header_2019 > nav > ul > li {
  margin: 0;
  padding: 0.5em 0;
  position: relative;
  transition: all linear 0.1s;
  text-align: center;
  z-index: 10; }
  @media only screen and (min-width: 768px) {
    .privatestock_header_2019 > nav > ul > li {
      padding: 0 0 0 0;
      text-align: center; } }

.privatestock_header_2019 > nav > ul > li > a > div {
  width: 100%;
  text-transform: uppercase;
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
  line-height: auto; }
  @media only screen and (min-width: 768px) {
    .privatestock_header_2019 > nav > ul > li > a > div {
      line-height: 16px;
      font-size: 12px; } }

.privatestock_header_2019 > nav > ul > li:hover {
  background: #333; }
  @media only screen and (min-width: 600px) {
    .privatestock_header_2019 > nav > ul > li:hover {
      background: #333; } }

.privatestock_header_2019 > nav > ul > li a + div {
  background: none;
  display: block;
  font-size: 1em;
  position: relative;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .privatestock_header_2019 > nav > ul > li a + div {
      background: #333;
      display: none;
      position: absolute; } }

.privatestock_header_2019 > nav > ul > li:hover a + div {
  display: block; }

.privatestock_header_2019 > nav > ul > li a + div > ul {
  list-style-type: none;
  padding: 0 0 0 0; }

.privatestock_header_2019 > nav > ul > li a + div > ul > li {
  display: inline;
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0 1em 1em 1em;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .privatestock_header_2019 > nav > ul > li a + div > ul > li {
      display: block;
      font-size: 12px;
      padding: 1em 1em 1em 1em; } }

.privatestock_header_2019 > nav > ul > li a + div > ul > li > a {
  color: #fff;
  text-decoration: none;
  text-transform: none;
  background-color: transparent; }
  @media only screen and (min-width: 768px) {
    .privatestock_header_2019 > nav > ul > li a + div > ul > li > a {
      text-transform: uppercase; } }

.privatestock_header_2019 > nav > ul > li a + div > ul > li:hover > a {
  color: #fff;
  text-decoration: underline; }

.privatestock_header_2019 > nav > ul > li > a {
  color: #fff;
  display: block;
  font-size: 1em;
  font-weight: 200;
  letter-spacing: 1px;
  line-height: 1.5em;
  padding: 0.5em 0.2em;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all linear 0.1s; }
  @media only screen and (min-width: 768px) {
    .privatestock_header_2019 > nav > ul > li > a {
      padding: 2em 0; } }

.ps_section {
  clear: both;
  overflow: hidden; }

.ps_section_inner {
  width: 90%;
  margin: 0px auto; }

.ps_left h2 {
  text-align: left; }
.ps_left p {
  text-align: left;
  width: 90%; }
  @media only screen and (min-width: 768px) {
    .ps_left p {
      width: 60%; } }

.ps_right h2 {
  text-align: right; }
.ps_right p {
  text-align: right;
  float: right;
  width: 90%; }
  @media only screen and (min-width: 768px) {
    .ps_right p {
      width: 60%; } }

.ps_center h2 {
  text-align: center; }
.ps_center p {
  text-align: center;
  width: 90%;
  margin: 0px auto; }
  .ps_center p + p {
    margin: 1em auto 0 auto; }
  @media only screen and (min-width: 768px) {
    .ps_center p {
      width: 60%; } }

.ps_light {
  background-color: #f3f3f3;
  padding: 77px 0 57px 0; }
  .ps_light h2 {
    color: #333;
    margin: 0 0 1em 0;
    padding: 0 0 0 0;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 2em;
    font-family: "Source Sans Pro", sans-serif; }
    @media only screen and (min-width: 768px) {
      .ps_light h2 {
        font-size: 2.5em; } }
  .ps_light p {
    color: #666;
    font-size: 1em;
    line-height: 1.5em;
    font-family: "Source Sans Pro", sans-serif; }
    .ps_light p a:link, .ps_light p a:visited {
      color: #333;
      text-decoration: underline; }
    .ps_light p a:active, .ps_light p a:hover {
      color: #999;
      text-decoration: underline; }
  .ps_light .photo_group p a {
    font-size: 1.2em;
    margin: 0.9em 0 1em 0;
    display: block; }
    .ps_light .photo_group p a:link, .ps_light .photo_group p a:visited {
      color: #666;
      text-decoration: none; }
    .ps_light .photo_group p a:active, .ps_light .photo_group p a:hover {
      color: #999;
      text-decoration: none; }
  .ps_light .ghost_button {
    text-transform: uppercase;
    text-align: center;
    margin: 4em auto; }
    .ps_light .ghost_button a {
      text-decoration: none;
      font-size: 100%;
      font-weight: normal;
      color: #333;
      border: 1px solid #333;
      padding: 0.75em 1.8em;
      display: inline-block;
      overflow: hidden;
      transition: all 0.4s ease 0s;
      cursor: pointer; }
      .ps_light .ghost_button a:active, .ps_light .ghost_button a:hover {
        color: #fff;
        border: 1px solid #333;
        background: #333; }
  .ps_light .material_grid a:link, .ps_light .material_grid a:visited {
    color: #333;
    text-decoration: none; }
  .ps_light .material_grid a:active, .ps_light .material_grid a:hover {
    color: #666;
    text-decoration: none; }
  .ps_light .model_list span {
    display: block;
    margin: 1em 0 0 0; }
  .ps_light .model_list a:link, .ps_light .model_list a:visited {
    color: #333;
    text-decoration: none; }
  .ps_light .model_list a:active, .ps_light .model_list a:hover {
    color: #666;
    text-decoration: none; }

.ps_medium {
  background-color: #201e20;
  padding: 77px 0 57px 0; }
  .ps_medium h2 {
    margin: 0 0 1em 0;
    padding: 0 0 0 0;
    font-weight: normal;
    text-transform: uppercase;
    color: #fff;
    font-size: 2em;
    font-family: "Source Sans Pro", sans-serif; }
    @media only screen and (min-width: 768px) {
      .ps_medium h2 {
        font-size: 2.5em; } }
  .ps_medium p {
    color: #ececec;
    font-size: 1em;
    line-height: 1.5em;
    font-family: "Source Sans Pro", sans-serif; }
    .ps_medium p a:link, .ps_medium p a:visited {
      color: #ccc;
      text-decoration: none; }
    .ps_medium p a:active, .ps_medium p a:hover {
      color: #fff;
      text-decoration: underline; }
  .ps_medium .ghost_button {
    text-transform: uppercase;
    text-align: center;
    margin: 4em auto; }
    .ps_medium .ghost_button a {
      text-decoration: none;
      font-size: 100%;
      font-weight: normal;
      color: #fff;
      border: 1px solid #fff;
      padding: 0.75em 1.8em;
      display: inline-block;
      overflow: hidden;
      transition: all 0.4s ease 0s;
      cursor: pointer; }
      .ps_medium .ghost_button a:active, .ps_medium .ghost_button a:hover {
        color: #333;
        border: 1px solid #fff;
        background: #fff; }
  .ps_medium .material_grid a:link, .ps_medium .material_grid a:visited {
    color: #ccc;
    text-decoration: none; }
  .ps_medium .material_grid a:active, .ps_medium .material_grid a:hover {
    color: #fff;
    text-decoration: none; }

.ps_dark {
  background-color: #000;
  padding: 77px 0 57px 0; }
  .ps_dark h2 {
    margin: 0 0 1em 0;
    padding: 0 0 0 0;
    font-weight: normal;
    text-transform: uppercase;
    color: #fff;
    font-size: 2em;
    font-family: "Source Sans Pro", sans-serif; }
    @media only screen and (min-width: 768px) {
      .ps_dark h2 {
        font-size: 2.5em; } }
  .ps_dark p {
    color: #ececec;
    font-size: 1em;
    line-height: 1.5em;
    font-family: "Source Sans Pro", sans-serif; }
    .ps_dark p a:link, .ps_dark p a:visited {
      color: #ccc;
      text-decoration: underline; }
    .ps_dark p a:active, .ps_dark p a:hover {
      color: #fff;
      text-decoration: none; }
  .ps_dark .ghost_button {
    text-transform: uppercase;
    text-align: center;
    margin: 4em auto; }
    .ps_dark .ghost_button a {
      text-decoration: none;
      font-size: 100%;
      font-weight: normal;
      color: #fff;
      border: 1px solid #fff;
      padding: 0.75em 1.8em;
      display: inline-block;
      overflow: hidden;
      transition: all 0.4s ease 0s;
      cursor: pointer; }
      .ps_dark .ghost_button a:active, .ps_dark .ghost_button a:hover {
        color: #333;
        border: 1px solid #fff;
        background: #fff; }

.photo_group {
  text-align: center; }
  .photo_group img {
    max-width: 100%; }
  .photo_group .inner_container {
    padding: 0 0; }
    @media only screen and (min-width: 768px) {
      .photo_group .inner_container {
        padding: 0 3%; } }
    .photo_group .inner_container + .inner_container {
      margin: 5em 0 0 0; }

.video {
  margin: 4em auto;
  width: 100%; }
  @media only screen and (min-width: 600px) {
    .video {
      width: 90%; } }
  @media only screen and (min-width: 768px) {
    .video {
      max-width: 800px; } }
  .video img {
    width: 100%;
    margin: 0px auto; }
  .video iframe {
    max-width: 100%; }
  .video + .section_intro {
    margin: 6em auto 0 auto; }

.hero_tour ul {
  margin: 0px auto;
  width: 100%;
  padding: 0 0 0 0; }
.hero_tour img {
  max-width: 100%;
  display: block; }
.hero_tour p {
  color: #fff;
  width: 65%;
  margin: 0px auto;
  text-align: center;
  padding: 3em 0;
  line-height: 1.5em; }

.photo_grid {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style-type: none; }
  .photo_grid img {
    max-width: 100%; }
  .photo_grid span {
    display: block;
    width: 75%;
    margin: 0px auto;
    text-align: center; }
  .photo_grid div {
    text-align: center; }

.material_grid {
  margin: 2.5em 0 2.5em 0;
  padding: 0 0 0 0;
  list-style-type: none; }
  .material_grid p {
    font-family: "Source Sans Pro", sans-serif; }
  .material_grid li {
    text-align: center;
    margin: 0 0 2.5em 0; }
  .material_grid div {
    margin: 0px auto;
    width: 95%; }
  .material_grid img {
    max-width: 100%; }
  .material_grid span {
    display: block;
    margin: 1em 0 1em 0;
    font-family: "Source Sans Pro", sans-serif; }

/* PS Home */
.ps_home_hero img {
  max-width: 100%;
  display: block; }

.bg_thisisprivatestock {
  background-image: url(/imgs/privatestock/backgrounds/thisisprivatestock.jpg);
  height: 80vh; }
  @media only screen and (min-width: 768px) {
    .bg_thisisprivatestock {
      height: 100vh; } }
  .bg_thisisprivatestock img {
    float: right;
    max-width: 60%;
    padding: 1.5em 0 0 0; }
    @media only screen and (min-width: 768px) {
      .bg_thisisprivatestock img {
        max-width: 50%;
        padding: 1em 0 0 0; } }

.bg_electrics {
  height: 70vh;
  background-image: url(/imgs/privatestock/backgrounds/electrics.jpg); }
  @media only screen and (min-width: 768px) {
    .bg_electrics {
      height: 90vh; } }
  .bg_electrics p {
    padding: 6em 0 2em 0;
    font-size: 1.3em;
    line-height: 1.3em; }
    @media only screen and (min-width: 768px) {
      .bg_electrics p {
        font-size: 1.7em;
        line-height: 1.5em; } }

.bg_acoustics {
  height: 90vh;
  background-image: url(/imgs/privatestock/backgrounds/acoustics.jpg); }
  @media only screen and (min-width: 768px) {
    .bg_acoustics {
      height: 90vh; } }
  .bg_acoustics p {
    padding: 5em 0 2em 0;
    font-size: 1.3em;
    line-height: 1.3em; }
    @media only screen and (min-width: 768px) {
      .bg_acoustics p {
        font-size: 1.7em;
        line-height: 1.5em; } }

.bg_order_idea {
  background: url(/imgs/privatestock/backgrounds/bg_order_idea.jpg) top no-repeat; }

.bg_order_reality {
  background: url(/imgs/privatestock/backgrounds/bg_order_reality.jpg) top no-repeat; }

.ps_photo_tour {
  margin: 6em 0; }
  .ps_photo_tour ul {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style-type: none; }
  .ps_photo_tour img {
    width: 90%;
    text-align: center;
    margin: 0px auto; }

.model_list ul li {
  text-align: center; }
  .model_list ul li img {
    max-width: 100%;
    margin: 0px auto; }

/* Materials and Finishes */
.materials_and_finishes p + h2 {
  padding: 3em 0 0 0; }

/* Gallery */
.gallery_select {
  margin: 1em auto 5em auto;
  padding: 0;
  list-style-type: none;
  text-align: center;
  width: 100%; }
  .gallery_select li {
    text-align: center;
    margin: 0.5em auto; }
    @media only screen and (min-width: 768px) {
      .gallery_select li {
        margin: 1em auto;
        text-align: left; } }
  .gallery_select div {
    display: block; }
  .gallery_select .viewall {
    font-size: 1.2em;
    text-transform: uppercase; }
  .gallery_select .numeric {
    margin: 1.6em auto; }
  .gallery_select a {
    padding: 0.5em; }
    .gallery_select a:link, .gallery_select a:visited {
      color: #ccc;
      background-color: none;
      text-decoration: none; }
    .gallery_select a:active, .gallery_select a:hover {
      color: #333;
      background-color: #fff;
      text-decoration: none; }

.privatestock_gallery_grid img {
  margin: 0px auto;
  max-width: 95%; }
.privatestock_gallery_grid span {
  margin: 16px auto 32px auto;
  font-size: 16px;
  width: 80%; }
.privatestock_gallery_grid ul {
  display: grid;
  grid-template-columns: 50% 50%; }
  @media only screen and (min-width: 768px) {
    .privatestock_gallery_grid ul {
      grid-template-columns: 25% 25% 25% 25%; } }
  .privatestock_gallery_grid ul li {
    margin: 0;
    padding: 0; }
.privatestock_gallery_grid li a {
  font-size: 16px;
  line-height: 18px; }
  .privatestock_gallery_grid li a:link, .privatestock_gallery_grid li a:visited {
    color: #ccc;
    text-decoration: none; }
  .privatestock_gallery_grid li a:active, .privatestock_gallery_grid li a:hover {
    color: #ccc;
    text-decoration: underline; }

.gallery_guitar_hero {
  text-align: center; }
  .gallery_guitar_hero img {
    max-width: 100%;
    margin: 0px auto; }
    @media only screen and (min-width: 768px) {
      .gallery_guitar_hero img {
        max-width: 90%; } }

.gallery_guitar_thumbnails ul {
  margin: 2em auto;
  padding: 0 0 0 0;
  list-style-type: none; }
  @media only screen and (min-width: 768px) {
    .gallery_guitar_thumbnails ul {
      margin: 0 0 0 0; } }
  .gallery_guitar_thumbnails ul li {
    text-align: center;
    margin: 1.5em 0 0 0; }
.gallery_guitar_thumbnails img {
  max-width: 100%; }

.gallery_previous_next_container {
  margin: 0px auto;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .gallery_previous_next_container {
      width: 60%; } }
  @media only screen and (min-width: 1030px) {
    .gallery_previous_next_container {
      margin: 0;
      width: 90%; } }
  .gallery_previous_next_container .gallery_previous_next {
    background-color: #333; }
    .gallery_previous_next_container .gallery_previous_next div {
      display: flex;
      justify-content: center;
      align-items: center; }
      @media only screen and (min-width: 1030px) {
        .gallery_previous_next_container .gallery_previous_next div {
          justify-content: space-between; } }
      .gallery_previous_next_container .gallery_previous_next div img {
        padding: 7px 6px 6px 6px; }
  .gallery_previous_next_container .gallery_previous_next + .gallery_previous_next {
    margin: 1em auto 0 auto; }
  .gallery_previous_next_container .gallery_next_entry,
  .gallery_previous_next_container .gallery_previous_entry {
    background-color: #000;
    display: block;
    margin: 0;
    padding: 8px;
    text-transform: uppercase; }
  .gallery_previous_next_container .gallery_next_entry {
    text-align: right; }
  .gallery_previous_next_container .gallery_previous_next_title {
    padding: 0 6px; }
  .gallery_previous_next_container .gallery_previous_entry {
    text-align: left; }

/* REMOVE gallery 2018 update */
.gallery_guitar_specs {
  margin: 0 0 0 0;
  padding: 0 0 10em 0; }
  .gallery_guitar_specs h3 {
    font-weight: normal;
    font-size: 2em;
    font-family: "Source Sans Pro", sans-serif;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 6px solid #666;
    padding: 0 0 0.5em 0;
    margin: 0 0 2em 0; }
  .gallery_guitar_specs ul {
    margin: 0 0 0 0;
    padding: 0 0 0 0; }
    .gallery_guitar_specs ul li {
      color: #fff;
      margin: 1em 0 0 0; }
      .gallery_guitar_specs ul li span {
        display: block;
        padding: 0 2em 0 0; }

/* KEEP gallery 2018 update */
/* PS Gallery Layout - Grid Index */
.gallery_select_container {
  grid-area: ps_gallery_select_container; }

.privatestock_gallery_grid {
  grid-area: ps_gallery_grid; }

.gallery_index_container {
  margin: 0px auto;
  width: 100%;
  display: grid;
  grid-template-areas: "ps_gallery_select_container" "ps_gallery_grid";
  grid-gap: 0;
  grid-template-columns: 100%; }
  @media only screen and (min-width: 768px) {
    .gallery_index_container {
      grid-template-areas: "ps_gallery_select_container ps_gallery_grid";
      grid-gap: 0;
      grid-template-columns: 20% 80%;
      width: 98%; } }

/* PS Gallery Layout - Single Entry */
.ps_gallery_single_entry_header {
  grid-area: ps_gallery_header; }

.gallery_guitar_main_images {
  grid-area: ps_gallery_images; }

.gallery_guitar_specs_2019 {
  grid-area: ps_gallery_specs; }

.gallery_previous_next_container {
  grid-area: ps_gallery_previous_next; }

.gallery_guitar_single_entry_container {
  margin: 0px auto;
  width: 100%; }
  @media only screen and (min-width: 600px) {
    .gallery_guitar_single_entry_container {
      width: 100%; } }

.gallery_guitar_single_entry {
  display: grid;
  grid-template-areas: "ps_gallery_header ps_gallery_images ps_gallery_specs ps_gallery_previous_next";
  grid-gap: 0;
  grid-template-columns: 100%;
  grid-template-areas: "ps_gallery_header" "ps_gallery_images" "ps_gallery_specs" "ps_gallery_previous_next"; }
  @media only screen and (min-width: 1030px) {
    .gallery_guitar_single_entry {
      grid-gap: 0;
      grid-template-columns: 75% 25%;
      grid-template-areas: "ps_gallery_header ps_gallery_header" "ps_gallery_images ps_gallery_previous_next" "ps_gallery_specs ps_gallery_specs"; } }
  .gallery_guitar_single_entry h2 {
    text-align: left;
    font-family: inherit; }

.ps_gallery_single_entry_header {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 20px auto; }
  @media only screen and (min-width: 768px) {
    .ps_gallery_single_entry_header {
      width: 95%; } }
  .ps_gallery_single_entry_header h1 {
    font-size: 1.25em;
    padding: 10px 0 10px 20px; }
    @media only screen and (min-width: 768px) {
      .ps_gallery_single_entry_header h1 {
        font-size: 2em; } }
  .ps_gallery_single_entry_header .full_gallery_view_icon {
    max-width: 40px;
    padding: 10px 20px 10px 0; }
    @media only screen and (min-width: 768px) {
      .ps_gallery_single_entry_header .full_gallery_view_icon {
        max-width: 45px; } }
    .ps_gallery_single_entry_header .full_gallery_view_icon:hover {
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -o-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-transition: transform 0.1s ease-in-out;
      -moz-transition: transform 0.1s ease-in-out;
      -ms-transition: transform 0.1s ease-in-out; }

.gallery_guitar_main_images {
  max-width: 100%;
  margin: 0px 0px 0px 0px;
  padding: 0; }
  @media only screen and (min-width: 600px) {
    .gallery_guitar_main_images {
      max-width: 80%;
      margin: 0px 0px 0px 40px; } }

.gallery_guitar_main_images_owl {
  margin: 0px auto;
  max-width: 100%; }
  @media only screen and (min-width: 768px) {
    .gallery_guitar_main_images_owl {
      margin: 0 0 0 0;
      max-width: 800px;
      padding: 0 32px; } }
  .gallery_guitar_main_images_owl .owl-carousel {
    color: #fff; }

.gallery_guitar_specs_2019 {
  margin: 24px 0 0 0;
  padding: 0 0 32px 0; }
  @media only screen and (min-width: 768px) {
    .gallery_guitar_specs_2019 {
      padding: 0 0 10em 0; } }
  .gallery_guitar_specs_2019 h3 {
    font-weight: normal;
    font-size: 2em;
    font-family: "Source Sans Pro", sans-serif;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 6px solid #666;
    padding: 0 0 0.5em 0;
    margin: 0 0 2em 0; }
  .gallery_guitar_specs_2019 ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    columns: 1; }
    @media only screen and (min-width: 768px) {
      .gallery_guitar_specs_2019 ul {
        columns: 2; } }
    .gallery_guitar_specs_2019 ul li {
      color: #fff;
      margin: 0 0 16px 0; }
  .gallery_guitar_specs_2019 .gallery_guitar_specifications_inner {
    margin: 0px auto;
    width: 95%; }

.gallery_guitar_specs {
  margin: 0 0 0 0;
  padding: 0 0 10em 0; }
  .gallery_guitar_specs h3 {
    font-weight: normal;
    font-size: 2em;
    font-family: "Source Sans Pro", sans-serif;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 6px solid #666;
    padding: 0 0 0.5em 0;
    margin: 0 0 2em 0; }
  .gallery_guitar_specs ul {
    margin: 0 0 0 0;
    padding: 0 0 0 0; }
    .gallery_guitar_specs ul li {
      color: #fff;
      margin: 1em 0 0 0; }
      .gallery_guitar_specs ul li span {
        display: block;
        padding: 0 2em 0 0; }

.gallery_guitar_specifications_inner {
  width: 80%;
  display: none; }
  @media only screen and (min-width: 768px) {
    .gallery_guitar_specifications_inner {
      display: block; } }

.show_gallery_specs {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  display: block;
  font-size: 1em;
  padding: 1em 0.75em;
  text-transform: uppercase;
  margin: 0px auto;
  display: block; }
  .show_gallery_specs:hover {
    background-color: #1c1c1c;
    border: 1px solid #1c1c1c;
    color: #fff; }
  @media only screen and (min-width: 768px) {
    .show_gallery_specs {
      display: none; } }

/* Collection */
.collection_gallery_current {
  margin: 0px auto;
  padding: 0 0 0 0;
  list-style-type: none; }
  .collection_gallery_current img {
    max-width: 100%; }

.collection_dealer_list,
.ps_dealer_list_container {
  margin: 3em auto; }
  .collection_dealer_list h2,
  .ps_dealer_list_container h2 {
    margin: 2em auto 1em auto; }
  .collection_dealer_list ul,
  .ps_dealer_list_container ul {
    margin: 2em 1em;
    padding: 0 1em;
    list-style-type: none;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .collection_dealer_list ul,
      .ps_dealer_list_container ul {
        text-align: left; } }
  .collection_dealer_list .dealername,
  .ps_dealer_list_container .dealername {
    font-size: 1.2em;
    font-family: "Source Sans Pro", sans-serif;
    margin: 0 0 0.2em 0; }
  .collection_dealer_list .dealerlocation,
  .ps_dealer_list_container .dealerlocation {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em; }
  .collection_dealer_list a,
  .ps_dealer_list_container a {
    display: block;
    margin: 0.5em 0 0 0;
    font-family: "Source Sans Pro", sans-serif; }
    .collection_dealer_list a:link, .collection_dealer_list a:visited,
    .ps_dealer_list_container a:link,
    .ps_dealer_list_container a:visited {
      color: #666;
      text-decoration: none; }
    .collection_dealer_list a:active, .collection_dealer_list a:hover,
    .ps_dealer_list_container a:active,
    .ps_dealer_list_container a:hover {
      color: #999;
      text-decoration: none; }

.collectionguitar {
  text-align: center; }

.collection_featured {
  margin: 6em auto; }
  .collection_featured img {
    max-width: 100%; }
  .collection_featured p {
    margin: 2em auto;
    font-size: 1.1em; }
  .collection_featured + .collection_featured {
    margin: 6em 0 6em 0; }
    @media only screen and (min-width: 768px) {
      .collection_featured + .collection_featured {
        margin: 14em 0 16em 0; } }
  .collection_featured .section_intro {
    margin: 3em auto 2em auto; }

.past_collection_series .series_name {
  font-size: 0.8em;
  text-align: center;
  width: 80%;
  margin: 0.75em auto 2em auto; }
  .past_collection_series .series_name a:link, .past_collection_series .series_name a:visited {
    color: #ccc;
    text-decoration: none; }
  .past_collection_series .series_name a:active, .past_collection_series .series_name a:hover {
    color: #fff;
    text-decoration: none; }

/* Models */
.ps_model_nav {
  width: 60%;
  margin: 1em auto 3em auto;
  border-top: 1px #ccc dotted;
  border-bottom: 1px #ccc dotted;
  padding: 1.3em 0; }
  .ps_model_nav ul {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style-type: none; }
  .ps_model_nav li {
    margin: 0 0 1em 0; }
  .ps_model_nav p {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5em; }
  .ps_model_nav .center {
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .ps_model_nav .center {
        text-align: center; } }
  .ps_model_nav .left {
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .ps_model_nav .left {
        text-align: left; } }
  .ps_model_nav .right {
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .ps_model_nav .right {
        text-align: right; } }
  .ps_model_nav a {
    padding: 0.3em;
    text-decoration: none; }
    .ps_model_nav a:link, .ps_model_nav a:visited {
      color: #ccc; }
    .ps_model_nav a:active, .ps_model_nav a:hover {
      color: #333;
      background-color: #fff; }

.ps_models_list_container {
  background-color: #171717;
  color: #fff;
  margin: 0px auto;
  padding: 2em 1em 4em 1em;
  width: 95%; }
  @media only screen and (min-width: 600px) {
    .ps_models_list_container {
      padding: 2em 2em 4em 2em; } }
  .ps_models_list_container p {
    width: 90%;
    font-size: 16px;
    line-height: 20px;
    margin: 0px auto; }
    @media only screen and (min-width: 600px) {
      .ps_models_list_container p {
        width: 90%;
        margin: 0 0 0 0;
        font-size: 18px;
        line-height: 22px; } }
    .ps_models_list_container p a:link, .ps_models_list_container p a:visited {
      color: #ccc;
      text-decoration: none; }
    .ps_models_list_container p a:active, .ps_models_list_container p a:hover {
      color: #fff;
      text-decoration: underline; }
  .ps_models_list_container .ps_models_list {
    display: grid;
    grid-template-rows: auto;
    grid-gap: 1.5em;
    grid-template-columns: repeat(2, 1fr);
    padding: 1em 2em 4em 1em; }
    @media only screen and (min-width: 600px) {
      .ps_models_list_container .ps_models_list {
        grid-template-columns: repeat(auto-fit, minmax(15.625em, 1fr));
        padding: 2em 2em 4em 2em; } }
  .ps_models_list_container .model {
    margin: 1.5em 0 0 0;
    width: 75%; }
    @media only screen and (min-width: 600px) {
      .ps_models_list_container .model {
        margin: 1em 0 0 0; } }
    .ps_models_list_container .model h2 {
      font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-size: 1em;
      margin: 0 0 0 0;
      padding: 1em 0;
      text-align: center;
      text-decoration: none; }
      .ps_models_list_container .model h2 a:link, .ps_models_list_container .model h2 a:visited {
        color: #fff;
        text-decoration: none; }
      .ps_models_list_container .model h2 a:active, .ps_models_list_container .model h2 a:hover {
        color: #fff;
        text-decoration: underline; }
    .ps_models_list_container .model h3 {
      color: #ccc;
      font-size: 0.8em;
      margin: 0.7em 0 0 0;
      padding: 0 0 0 0;
      text-align: center;
      text-transform: uppercase; }
    .ps_models_list_container .model img {
      max-width: 100%;
      -webkit-transition: all 0.2s ease;
      /* Safari and Chrome */
      -moz-transition: all 0.2s ease;
      /* Firefox */
      -ms-transition: all 0.2s ease;
      /* IE 9 */
      -o-transition: all 0.2s ease;
      /* Opera */
      transition: all 0.2s ease; }
      .ps_models_list_container .model img:hover {
        cursor: hand;
        -webkit-transform: scale(0.98);
        /* Safari and Chrome */
        -moz-transform: scale(0.98);
        /* Firefox */
        -ms-transform: scale(0.98);
        /* IE 9 */
        -o-transform: scale(0.98);
        /* Opera */
        transform: scale(0.98); }
  .ps_models_list_container ul {
    color: #fff;
    list-style-type: none;
    margin: 1em 0 0 0;
    font-size: 0.6em;
    padding: 0 0 0 0;
    text-align: center; }
  .ps_models_list_container .model_inner {
    background: #000;
    padding: 1em 1em 0 1em;
    margin: 0px auto;
    min-height: 370px;
    width: 100%;
    text-align: center; }
    @media only screen and (min-width: 600px) {
      .ps_models_list_container .model_inner {
        padding: 2em 1em 1em 1em;
        min-height: 350px; } }
    @media only screen and (min-width: 768px) {
      .ps_models_list_container .model_inner {
        min-height: 400px; } }

.ps_model {
  width: 90%;
  margin: 0px auto; }
  .ps_model img {
    max-width: 100%; }
  .ps_model h3 {
    color: #fff;
    font-weight: normal;
    font-size: 1.75em; }
  .ps_model + .ps_model {
    margin: 4em auto 0 auto;
    border-top: 1px solid #7d7d7d;
    padding: 2em 0 0 0; }
  .ps_model .ghost_button {
    padding: 0 1em 0 0; }

.ps_model_options h1 {
  color: #393939;
  font-size: 2.2em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1em 0;
  font-family: "Source Sans Pro", sans-serif; }
.ps_model_options dl + h1 {
  margin: 4em 0 1em 0; }
.ps_model_options h2 {
  font-size: 1.7em;
  text-transform: none;
  text-align: center;
  color: #393939; }
.ps_model_options dl dt {
  color: #393939;
  font-weight: bold;
  font-size: 1.5em;
  margin: 2em 0 0 0; }
  .ps_model_options dl dt span {
    color: #5d5d5d;
    font-weight: normal;
    font-size: 0.6em;
    display: block;
    margin: 0 0 0.9em 0; }
.ps_model_options dl dd {
  margin: 0.7em 0 0 0;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6em;
  width: 90%; }
.ps_model_options ul {
  list-style-type: none;
  margin: 3em 0 4em 0;
  padding: 0 0 0 0;
  text-align: center; }
  .ps_model_options ul li {
    margin: 0.8em 0 0 0; }
.ps_model_options p {
  text-align: center;
  width: 90%;
  margin: 0px auto; }
  @media only screen and (min-width: 768px) {
    .ps_model_options p {
      width: 70%; } }

/* Meet The Builders */
.builder_profile h2 {
  margin: 0 0 0 0;
  padding: 0 0 0 0; }
.builder_profile h3 {
  text-align: center;
  color: #ccc;
  margin: 0.5em 0 1em 0;
  padding: 0 0 0 0;
  font-weight: normal;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.1em; }
.builder_profile img {
  max-width: 100%;
  margin: 0 0 2em 0; }
.builder_profile p {
  font-family: "Source Sans Pro", sans-serif; }
.builder_profile .question {
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  text-align: left;
  width: 100%; }
  .builder_profile .question + .answer {
    margin: 0.9em 0 0 0; }
.builder_profile .answer {
  font-weight: normal;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  text-align: left;
  width: 100%; }
  .builder_profile .answer + .question {
    width: 100%;
    margin: 1.5em 0 0 0; }
.builder_profile + .builder_profile {
  margin: 5em 0 0 0; }

.builder_profile_copy_inner {
  margin: 0 0 0 0;
  padding: 0; }
  @media only screen and (min-width: 768px) {
    .builder_profile_copy_inner {
      padding: 1em; } }
  .builder_profile_copy_inner + .builder_profile_copy_inner {
    margin: 1em 0 0 0; }

/* Order */
.ps_order_forms {
  width: 80%;
  margin: 6em auto 3em auto; }
  .ps_order_forms li {
    display: inline;
    text-align: center; }
  .ps_order_forms a {
    text-align: center; }
  .ps_order_forms img {
    text-align: center;
    display: block;
    max-width: 75px;
    margin: 0px auto;
    padding: 1em 0; }
  .ps_order_forms a {
    font-size: 1.5em;
    text-transform: uppercase; }
    .ps_order_forms a:link, .ps_order_forms a:visited {
      color: #666;
      text-decoration: none; }
    .ps_order_forms a:active, .ps_order_forms a:hover {
      color: #999;
      text-decoration: none; }

/* photo tour */
.photo_tour_slider img {
  max-width: 100%;
  margin: 0px auto;
  text-align: center; }
.photo_tour_slider p {
  text-align: center;
  width: 90%;
  margin: 1em auto 0px auto; }
  @media only screen and (min-width: 768px) {
    .photo_tour_slider p {
      width: 70%; } }
.photo_tour_slider ul {
  list-style-type: none;
  padding: 0; }

.ps_tour_nav {
  width: 60%;
  margin: 1em auto 3em auto;
  border-bottom: 1px #333 dotted;
  padding: 1.3em 0 1.3em 0; }
  .ps_tour_nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style-type: none; }
    @media only screen and (min-width: 768px) {
      .ps_tour_nav ul {
        flex-direction: row; } }
  .ps_tour_nav li {
    margin: 0 0 1em 0; }
  .ps_tour_nav h3 {
    color: #333;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: normal;
    font-family: "Source Sans Pro", sans-serif; }
  .ps_tour_nav .center {
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .ps_tour_nav .center {
        text-align: center; } }
  .ps_tour_nav .left {
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .ps_tour_nav .left {
        text-align: left; } }
  .ps_tour_nav .right {
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .ps_tour_nav .right {
        text-align: right; } }
  .ps_tour_nav a {
    padding: 0.3em;
    text-decoration: none; }
    .ps_tour_nav a:link, .ps_tour_nav a:visited {
      color: #333; }
    .ps_tour_nav a:active, .ps_tour_nav a:hover {
      color: #fff;
      background-color: #333; }

p > strong {
  font-weight: bold; }

p + p {
  margin-top: 1.2em; }

.ptc_background {
  background: url(/imgs/bg_ptc.jpg) top repeat-y #141414;
  padding: 0 0 6em 0; }

.ptc {
  clear: both;
  margin: 0px auto;
  padding-top: 30px;
  width: 91.666667%;
  /* 880 / 960 */ }

.ptc_section {
  margin: 25px 0;
  border-bottom: 1px dotted #333;
  padding-bottom: 25px; }
  .ptc_section iframe {
    max-width: 100%; }

.ptc_section p a:link,
.ptc_section p a:visited {
  color: #a9bdd7;
  text-decoration: none;
  font-style: italic; }

.ptc_section p a:active,
.ptc_section p a:hover {
  color: #a9bdd7;
  text-decoration: underline;
  font-style: italic; }

.ptc_section h2 {
  color: #fff;
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.75em;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 15px; }

.ptc_section p {
  color: #fbfbfb;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.3em; }

.ptc_hero {
  width: 100%;
  margin-bottom: 30px;
  text-align: center; }

.ptc_hero_full {
  display: none; }

.ptc_hero_mobile {
  display: block; }

.ptc_hero img {
  width: 100%; }

.ptc_headline {
  margin-bottom: 20px; }

.ptc_hero h1 {
  color: #fff;
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 2em;
  text-transform: uppercase; }

.ptc_hero p {
  color: #ccc;
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  font-weight: normal;
  margin-top: 10px;
  max-width: 100%; }

.ptc_about p {
  max-width: 100%;
  font-size: 1em; }

.ptc_work p + p {
  margin-top: 20px;
  text-align: center;
  font-size: 1.35em; }

.ptc_work_examples {
  margin: 30px 0;
  overflow: hidden;
  list-style-type: none; }

.ptc_box_column_one {
  border-bottom: 1px dotted #666;
  padding-bottom: 30px; }

.ptc_box_column_two {
  margin: 30px 0 0 0;
  border-bottom: 1px dotted #666;
  padding-bottom: 30px; }

.ptc_box_column_three {
  margin: 30px 0 0 0;
  border-bottom: 1px dotted #666;
  padding-bottom: 30px; }

.ptc_box_column_four {
  margin: 30px 0 0 0; }

.ptc_title_contain {
  min-height: 70px; }

.ptc_work_examples h3 {
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.2em;
  margin-bottom: 0px; }

.ptc_date {
  color: #999;
  display: block;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-size: .8em;
  font-style: italic;
  margin-top: 10px; }

.ptc_work_examples a:link,
.ptc_work_examples a:visited {
  color: #a9bdd7;
  text-decoration: none; }

.ptc_work_examples a:active,
.ptc_work_examples a:hover {
  color: #a9bdd7;
  text-decoration: underline; }

.ptc_work_examples img {
  max-width: 290px; }

.ptc_more_work {
  text-transform: uppercase;
  font-size: 1.25em; }

.title,
.columntitle {
  color: #fff;
  border-bottom: 1px dotted #bbb; }

#services {
  clear: left; }

.ptc_services_list {
  margin: 25px 0 0 0; }

.ptc_services_list li {
  color: #fff;
  padding: 8px 4px;
  line-height: 1.4em; }

.ptc_services_list li span {
  color: #999;
  font-weight: normal; }

/* Shipping */
.ptc_shipping h1,
.ptc_order h1 {
  color: white;
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 2em;
  margin-bottom: 20px; }

.ptc_shipping h2 {
  color: #fff;
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: normal; }

.ptc_shipping h3 {
  color: #fff;
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  font-weight: normal;
  margin-bottom: 16px;
  text-transform: uppercase; }

.ptc_shipping p {
  color: #fbfbfb;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  max-width: 100%; }

.ptc_shipping ul {
  color: #fbfbfb;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  margin: 30px 0; }

.ptc_shipping li + li {
  margin-top: 1.25em; }

.shipping_steps_contain {
  background-color: #222;
  max-width: 100%;
  margin: 40px auto;
  padding: 40px 10px; }

.shipping_step {
  padding: 0 1em 30px 1em;
  margin-bottom: 30px; }

.shipping_step img {
  margin-top: 15px;
  max-width: 100%; }

.shipping_step p {
  max-width: 100%; }

/* Form */
.ptc_order {
  max-width: 600px; }
  .ptc_order .btn {
    border-radius: 6px;
    display: block;
    margin: 20px 0;
    font-size: 1.15em;
    font-family: sans-serif;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase; }
  .ptc_order .btn:link,
  .ptc_order .btn:visited {
    color: #fff;
    background-color: #8ca1bd; }
  .ptc_order .btn:active,
  .ptc_order .btn:hover {
    color: #fff;
    background-color: #a9bdd7; }

.ptc_order_form {
  border: none;
  margin: 20px 0;
  padding: 0; }

.ptc_order_form p {
  color: #fff;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif; }

.ptc_order_form label {
  color: #fff;
  display: block;
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  margin-bottom: 3px; }

.ptc_order_form legend {
  color: #fff;
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  margin-bottom: 20px; }

.ptc_form_field {
  margin-bottom: 20px; }

.ptc_form_field input {
  width: 100%;
  height: 2em; }

.ptc_form_field select {
  width: 100%;
  height: 3em;
  background-image: none;
  border: medium none;
  box-shadow: none; }

.ptc_form_field textarea {
  width: 100%;
  height: 8em; }

/* Form Messages */
#success_page {
  margin-top: 40px; }

#success_page p {
  color: #fff;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.2em; }

.error_alert {
  color: #fff;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  margin: 30px 0; }

.error_alert span {
  color: #990000;
  text-transform: uppercase;
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  font-style: italic; }

.error_messages {
  color: #fff;
  font-family: GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif; }

.error_messages li + li {
  margin-top: 10px; }

.back_to_ptc {
  font-family: "Lato", GillSansRegular, "Gill Sans MT", "Gill Sans", Verdana, Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

.back_to_ptc a:link,
.back_to_ptc a:visited {
  color: #a9bdd7;
  text-decoration: none; }

.back_to_ptc a:active,
.back_to_ptc a:hover {
  color: #a9bdd7;
  text-decoration: underline; }

/* -----------------------  Ends Mobile  ---------------------- */
@media screen and (min-width: 600px) {
  .ptc_section {
    margin: 30px 0;
    padding-bottom: 0;
    border-bottom: none; }

  .ptc_section + .ptc_section {
    margin-top: 30px; }

  .ptc_hero_full {
    display: none; }

  .ptc_hero_mobile {
    display: block; }

  .ptc_hero h1 {
    font-size: 2.5em; }

  .ptc_hero p {
    font-size: 1.4em; }

  .ptc_about p {
    font-size: 1.25em; }

  .ptc_work {
    margin: 60px 0 0 0; }

  .ptc_work h2 {
    text-align: center;
    margin-bottom: 30px; }

  .ptc_work_examples {
    margin: 0; }

  .ptc_work_examples li {
    border-bottom: none;
    float: left;
    max-width: 45%; }

  .ptc_work_examples img {
    max-width: 100%; }

  .ptc_box_column_two {
    margin: 0 0 0 30px; }

  .ptc_box_column_three {
    margin: 20px 0 0 0; }

  .ptc_box_column_four {
    margin: 20px 0 0 30px; }

  .shipping_step {
    border-bottom: none; }

  .ptc_shipping p {
    max-width: 80%; }

  .shipping_step p {
    max-width: 100%; }

  .ptc_order_form {
    border: 1px solid #333;
    margin: 30px 0;
    padding: 20px; } }
/* Ends 600px Media Query */
@media screen and (min-width: 767px) {
  .ptc_shipping {
    margin-top: 0px; }

  .ptc_section {
    margin: 0 0; }

  .ptc_hero {
    position: relative;
    text-align: left; }

  .ptc_headline {
    position: absolute;
    top: 100px;
    left: 30px;
    width: 100%;
    margin-bottom: 0; }

  .ptc_hero h1 {
    font-size: 2.5em; }

  .ptc_hero_full {
    display: block; }

  .ptc_hero_mobile {
    display: none; }

  .ptc_hero p {
    font-size: 1.7em;
    max-width: 45%; }

  .ptc_about p {
    max-width: 90%; }

  .ptc_work {
    margin: 70px 0 0 0; }

  .ptc_work h2 {
    font-size: 3em; }

  .ptc_work_intro {
    max-width: 85%;
    margin: 0px auto;
    font-size: 1.5em; }

  .ptc_work_examples {
    margin: 45px auto 0 auto; }

  .ptc_work_examples h3 {
    font-size: 1em; }

  .ptc_work_examples li {
    max-width: 20%; }

  .ptc_box_column_two {
    margin: 0 0 0 54px; }

  .ptc_box_column_three {
    margin: 0 0 0 54px; }

  .ptc_box_column_four {
    margin: 0 0 0 54px; }

  .ptc_work_examples img {
    max-width: 100%; }

  #services {
    margin-top: 50px; } }
/* End 768 */
/* Wufoo contact form */
.wufoo .country {
  display: none; }

.search_index {
  background-color: #353537;
  padding: 3em 3em 15em 3em; }
  .search_index h1 {
    text-align: center; }
  .search_index form {
    text-align: center; }

.search_results iframe {
  margin: 0px auto; }

.searchresultscontain {
  width: 100%;
  margin: 0px auto; }

.search_result {
  margin: 0 0 30px 0; }
  .search_result .result_title {
    margin: 0 0 0 0;
    padding: 0 0 0 0; }
  .search_result .channel {
    margin: 0 0 0 0;
    padding: 0 0 0 0; }
  .search_result .publish_date {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-size: 0.8em;
    font-style: italic; }
  .search_result .excerpt {
    font-size: 0.8em; }

.search_result_inner {
  padding: 0 0 0 0; }
  @media only screen and (min-width: 600px) {
    .search_result_inner {
      padding: 0 2em 0 0; } }

.signatureclub_container {
  background: #141414; }
  @media only screen and (min-width: 768px) {
    .signatureclub_container {
      background: url(/imgs/signatureclub/bg_sigclub.jpg) top no-repeat #000; } }
  .signatureclub_container img {
    float: left;
    max-width: 100%;
    margin-bottom: 16px; }
    @media only screen and (min-width: 768px) {
      .signatureclub_container img {
        float: right;
        margin-bottom: 0; } }
  .signatureclub_container p {
    color: white;
    clear: both;
    max-width: 700px; }
  .signatureclub_container ul {
    color: #fff;
    max-width: 700px; }
    .signatureclub_container ul li + li {
      margin-top: 16px; }
  .signatureclub_container .signatureclub_container_inner {
    padding: 16px 32px; }

.joinnow {
  width: 200px;
  margin: 0px auto;
  padding: 10px 60px 0px 20px; }
  @media only screen and (min-width: 768px) {
    .joinnow {
      padding: 40px 60px 40px 20px; } }
  .joinnow a {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    font-size: 1em;
    padding: 1em 0.75em;
    text-transform: uppercase;
    text-align: center; }
    .joinnow a:hover {
      background-color: #1c1c1c;
      border: 1px solid #1c1c1c;
      color: #fff; }

.support_body_container {
  margin: 0px auto;
  padding: 1em 0 2em 0;
  width: 95%; }

.support_section {
  margin: 0px auto;
  width: 95%; }

.support_section_column {
  width: 90%; }
  .support_section_column h1 {
    border-bottom: 5px solid #262626;
    font-weight: bold;
    padding: 0.5em 0 0.3em 0; }
  .support_section_column h2 {
    font-size: 2em;
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase; }

.support_section_column + .support_section_column {
  margin: 5em 0 0 0; }

.support {
  background-color: #353537; }
  .support .hero_search {
    display: grid;
    height: 100%; }
  .support .article_preview a {
    display: block;
    padding: 1.1em 0.8em 0.8em 0.8em; }
    .support .article_preview a:link, .support .article_preview a:visited {
      color: #fff;
      background-color: #262626;
      text-decoration: none; }
    .support .article_preview a:active, .support .article_preview a:hover {
      color: #ccc;
      text-decoration: none; }
  .support .article_preview h2 {
    font-size: 1.8em;
    text-transform: uppercase; }
  .support .article_preview h3 {
    font-weight: bold;
    margin: 0 0 0.5em 0;
    font-size: 1.4em; }
  .support .article_preview p {
    margin: 0 0 0 0; }
  .support .article_preview .article_link {
    display: block;
    font-size: 0.8em;
    font-style: italic;
    margin: 0.75em 0 0 0;
    text-transform: uppercase; }
  .support .article_preview + .article_preview {
    margin: 1.3em 0 0 0; }
  .support .article_preview + h2 {
    margin: 2.5em 0 1em 0; }

.support_header_background_container {
  background-image: url(/imgs/support/bg_support.jpg);
  background-size: cover; }

.hero_search_large {
  min-height: 200px; }
  .hero_search_large h1 {
    margin: 0 0 0 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 2em; }
    .hero_search_large h1 a:link, .hero_search_large h1 a:visited {
      color: #fff;
      text-decoration: none; }
    .hero_search_large h1 a:active, .hero_search_large h1 a:hover {
      color: #fff;
      text-decoration: underline; }
  @media only screen and (min-width: 600px) {
    .hero_search_large {
      min-height: 115px; }
      .hero_search_large h1 {
        font-size: 3em; } }

.hero_search_small {
  min-height: 200px; }
  .hero_search_small h1 {
    margin: 0 0 0 0;
    text-align: left;
    text-transform: uppercase;
    font-size: 1.5em; }
    .hero_search_small h1 a:link, .hero_search_small h1 a:visited {
      color: #fff;
      text-decoration: none; }
    .hero_search_small h1 a:active, .hero_search_small h1 a:hover {
      color: #fff;
      text-decoration: underline; }
  @media only screen and (min-width: 600px) {
    .hero_search_small {
      min-height: 200px; }
      .hero_search_small h1 {
        font-size: 2em;
        text-align: center; } }

.support_contact_bar {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1em 1em 1em 1em;
  font-size: 0.7em; }
  @media only screen and (min-width: 600px) {
    .support_contact_bar {
      background-color: transparent;
      font-size: 0.9em; } }
  .support_contact_bar .contact_info {
    text-align: left; }
  .support_contact_bar .contact_times {
    text-align: right; }
  .support_contact_bar a:link, .support_contact_bar a:visited {
    color: #ccc;
    text-decoration: none; }
  .support_contact_bar a:active, .support_contact_bar a:hover {
    color: #fff;
    text-decoration: underline; }

.support_phone,
.support_email {
  padding-left: 0px; }
  @media only screen and (min-width: 600px) {
    .support_phone,
    .support_email {
      padding-left: 29px; } }

.support_phone {
  background: none; }
  @media only screen and (min-width: 600px) {
    .support_phone {
      background: url(/imgs/support/phone.png) left no-repeat; } }

.support_email {
  background: none; }
  @media only screen and (min-width: 600px) {
    .support_email {
      background: url(/imgs/support/mail.png) left no-repeat; } }

.support_search {
  text-align: center;
  margin: auto; }

.support_search_field,
.support_search_submit_button {
  border-radius: 0;
  color: #333;
  display: inline-block;
  font-size: 16px;
  padding: 10px 15px 10px 0px;
  -webkit-appearance: none;
  text-transform: uppercase; }
  @media only screen and (min-width: 600px) {
    .support_search_field,
    .support_search_submit_button {
      padding: 10px 15px; } }

.support_search_field input {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 5px;
  width: 220px; }

.support_search_submit_button input {
  background-color: #f9ffae;
  border: 1px solid transparent;
  text-transform: uppercase;
  padding: 10px 15px; }

.support_breadcrumbs_bar {
  border-bottom: 1px solid #464646;
  padding-bottom: 5px;
  margin: 0px auto;
  width: 95%; }

.support_breadcrumbs {
  font-size: 0.7em;
  text-transform: uppercase;
  text-align: inherit;
  margin: 25px 0 0 0; }
  @media only screen and (min-width: 600px) {
    .support_breadcrumbs {
      text-align: left;
      font-size: 0.9em; } }
  .support_breadcrumbs ul {
    display: flex;
    list-style-type: none;
    padding: 0; }
    .support_breadcrumbs ul li {
      color: #ccc; }
      .support_breadcrumbs ul li + li {
        border-left: 1px solid #fff;
        padding-left: 0.5em; }
      .support_breadcrumbs ul li a:link, .support_breadcrumbs ul li a:visited {
        color: #f9ffae;
        text-decoration: none; }
      .support_breadcrumbs ul li a:active, .support_breadcrumbs ul li a:hover {
        color: #f9ffae;
        text-decoration: underline; }
    .support_breadcrumbs ul li.support_home {
      border-right: 1px solid #fff; }
    .support_breadcrumbs ul li:first-of-type {
      padding-right: 0.5em; }

.register_button_container {
  text-align: inherit; }
  @media only screen and (min-width: 600px) {
    .register_button_container {
      text-align: right;
      float: right; } }
  .register_button_container .ghost_button {
    background-color: #f9ffae;
    text-transform: uppercase;
    text-align: center;
    margin: 4em auto;
    margin: 10px auto;
    width: 100%; }
    .register_button_container .ghost_button a {
      text-decoration: none;
      font-size: 100%;
      font-weight: normal;
      color: #000;
      border: 1px solid #fff699;
      padding: 0.75em 1.8em;
      display: inline-block;
      overflow: hidden;
      transition: all 0.4s ease 0s;
      cursor: pointer; }
      .register_button_container .ghost_button a:active, .register_button_container .ghost_button a:hover {
        color: #666;
        border: 1px solid #fff699;
        background: #fff699; }

.support_index_menu,
.support_article_list {
  margin: 0 0 0 0;
  padding: 2em 0 0 0; }
  .support_index_menu h2,
  .support_article_list h2 {
    font-weight: bold; }
  @media only screen and (min-width: 600px) {
    .support_index_menu,
    .support_article_list {
      padding: 2em 0 4em 0; } }
  .support_index_menu ul,
  .support_article_list ul {
    list-style-type: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0; }
    .support_index_menu ul + h2,
    .support_article_list ul + h2 {
      font-weight: bold;
      margin: 2.5em 0 0.5em 0; }
    .support_index_menu ul li + li,
    .support_article_list ul li + li {
      margin: 0.5em 0 0 0; }
    .support_index_menu ul li a:link, .support_index_menu ul li a:visited,
    .support_article_list ul li a:link,
    .support_article_list ul li a:visited {
      color: #c1bfbd;
      text-decoration: none; }
    .support_index_menu ul li a:active, .support_index_menu ul li a:hover,
    .support_article_list ul li a:active,
    .support_article_list ul li a:hover {
      color: #f9ffae;
      text-decoration: underline; }
  .support_index_menu p a:link, .support_index_menu p a:visited,
  .support_article_list p a:link,
  .support_article_list p a:visited {
    color: #f9ffae;
    text-decoration: none; }
  .support_index_menu p a:active, .support_index_menu p a:hover,
  .support_article_list p a:active,
  .support_article_list p a:hover {
    color: #f9ffae;
    text-decoration: underline; }

.support_section_nav_block {
  color: #fff;
  margin: 0 0 3em 0;
  width: 100%; }
  @media only screen and (min-width: 600px) {
    .support_section_nav_block {
      width: 90%; } }
  @media only screen and (min-width: 1030px) {
    .support_section_nav_block {
      width: 100%; } }
  .support_section_nav_block h2 {
    font-weight: bold;
    margin: 0 0 0.75em 0;
    padding: 0 0 0 0; }
    .support_section_nav_block h2 a:link, .support_section_nav_block h2 a:visited {
      color: #fff;
      text-decoration: none; }
    .support_section_nav_block h2 a:active, .support_section_nav_block h2 a:hover {
      color: #fff;
      text-decoration: underline; }

.support_article {
  margin: 3em auto 0 auto;
  min-height: 400px; }
  @media only screen and (min-width: 768px) {
    .support_article {
      display: grid;
      grid-template-columns: 70% 30%; } }
  .support_article h1 {
    margin: 0 0 1em 0; }
    .support_article h1 + .support_article_list {
      padding: 0em 0 4em 0; }
  .support_article h2 {
    margin: 3em 0 0 0; }
    .support_article h2 a {
      color: inherit; }
      .support_article h2 a:link, .support_article h2 a:visited {
        text-decoration: none; }
      .support_article h2 a:active, .support_article h2 a:hover {
        text-decoration: underline; }
  .support_article h3 {
    font-weight: bold;
    margin: 3em 0 0 0; }
    .support_article h3 + p {
      margin: 1em 0 0 0; }
  .support_article article {
    background-color: #2f2f2f;
    padding: 20px; }
    .support_article article img {
      max-width: 100%; }
  .support_article ul,
  .support_article ol {
    color: #fff;
    margin: 1em 0; }
  .support_article ol {
    margin: 3em 0; }
    .support_article ol li + li {
      margin: 2em 0 0 0; }
  .support_article ul li {
    margin: 0 0 1em 0; }
  .support_article p {
    color: #fff;
    font-size: 1em;
    line-height: 1.5em;
    margin: 1em 0; }
    .support_article p + p {
      margin: 2em 0 0 0; }
    .support_article p a:link, .support_article p a:visited {
      color: #f9ffae;
      text-decoration: none; }
    .support_article p a:active, .support_article p a:hover {
      color: #f9ffae;
      text-decoration: underline; }
    .support_article p img {
      max-width: 100%; }
  .support_article iframe {
    max-width: 100%; }
  .support_article table tr {
    color: #fff; }

.view_all_articles,
.view_single_article {
  display: block;
  font-size: 0.8em;
  font-style: italic;
  margin: 0.75em 0 0 0;
  text-transform: lowercase; }
  .view_all_articles:link, .view_all_articles:visited,
  .view_single_article:link,
  .view_single_article:visited {
    color: #f9ffae;
    text-decoration: none; }
  .view_all_articles:active, .view_all_articles:hover,
  .view_single_article:active,
  .view_single_article:hover {
    color: #f9ffae;
    text-decoration: underline; }

.support_article.support_article_small {
  margin: 0 0 0 0;
  min-height: auto; }
  .support_article.support_article_small p {
    width: 100%; }
    @media only screen and (min-width: 600px) {
      .support_article.support_article_small p {
        width: 70%; } }
  .support_article.support_article_small + .support_article.support_article_small {
    margin: 36px 0 0 0; }

.support_article_single_column {
  margin: inherit;
  width: inherit; }
  @media only screen and (min-width: 600px) {
    .support_article_single_column {
      margin: 1em auto;
      width: 70%; } }

.support_related_articles {
  padding: 16px; }
  .support_related_articles ul {
    list-style-type: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0; }
    .support_related_articles ul + h2 {
      margin: 2.5em 0 0.5em 0; }
    .support_related_articles ul li + li {
      margin: 0.5em 0 0 0; }
    .support_related_articles ul li a:link, .support_related_articles ul li a:visited {
      color: #f9ffae;
      text-decoration: none; }
    .support_related_articles ul li a:active, .support_related_articles ul li a:hover {
      color: #f9ffae;
      text-decoration: underline; }

.support_table {
  background-color: #ccc;
  border-collapse: collapse;
  margin: 1em 0;
  min-width: 200px;
  width: 100%; }
  @media only screen and (min-width: 600px) {
    .support_table {
      min-width: 600px;
      width: auto; } }
  .support_table caption {
    color: #fff;
    border-collapse: collapse;
    background-color: #666;
    font-size: 1.5em;
    padding: 1em; }
  .support_table td {
    color: #000; }
  .support_table th {
    background-color: #666; }
  .support_table th,
  .support_table td {
    border: 1px solid #333;
    padding: 10px;
    line-height: 18px;
    text-align: left;
    vertical-align: top; }
  .support_table + .support_table {
    margin: 6em 0 0 0; }

.support_accessory_block {
  margin: 36px 0 0 0; }
  .support_accessory_block p {
    font-size: 1.2em; }
  .support_accessory_block img {
    max-width: 95%; }
  .support_accessory_block .ghost_button {
    text-transform: uppercase;
    text-align: center;
    margin: 4em auto;
    margin: 10px auto; }
    .support_accessory_block .ghost_button a {
      text-decoration: none;
      font-size: 100%;
      font-weight: normal;
      color: #fff;
      border: 1px solid #FFF699;
      padding: 0.75em 1.8em;
      display: inline-block;
      overflow: hidden;
      transition: all 0.4s ease 0s;
      cursor: pointer; }
      .support_accessory_block .ghost_button a:active, .support_accessory_block .ghost_button a:hover {
        color: #000;
        border: 1px solid #FFF699;
        background: #FFF699; }

.support_ptc {
  background: #2f2f2f;
  padding: 16px; }

.support_search_result {
  padding: 18px 0 36px 0; }
  .support_search_result h2 {
    font-size: 1.5em;
    margin: 0 0 0 0; }
  .support_search_result p {
    color: #fff;
    font-size: 1em; }
  .support_search_result + .support_search_result {
    border-top: 1px dotted #ccc;
    padding: 18px 0 36px 0; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative; }

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none; }

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block; }

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.owl-height {
  transition: height .5s ease-in-out; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease; }

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-theme .owl-nav {
  margin-top: 10px; }

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px; }

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none; }

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1; }

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px; }

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791; }

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.6 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  .featherlight {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    background: #333;
    background: rgba(0, 0, 0, 0); }

  .featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8); }

  .featherlight:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

  .featherlight .featherlight-content {
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    overflow: auto;
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    background: #000;
    cursor: auto;
    white-space: normal; }

  .featherlight .featherlight-inner {
    display: block; }

  .featherlight link.featherlight-inner, .featherlight script.featherlight-inner, .featherlight style.featherlight-inner {
    display: none; }

  .featherlight .featherlight-close-icon {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    line-height: 25px;
    width: 25px;
    cursor: pointer;
    text-align: center;
    font-family: Arial,sans-serif;
    background: #000;
    background: #000;
    color: #fff;
    border: 0;
    padding: 0; }

  .featherlight .featherlight-close-icon::-moz-focus-inner {
    border: 0;
    padding: 0; }

  .featherlight .featherlight-image {
    margin: 0px auto;
    max-width: 100%; }

  .featherlight-iframe .featherlight-content {
    border-bottom: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll; }

  .featherlight iframe {
    border: 0; }

  .featherlight * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; } }
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent; } }
.featherlight_caption {
  color: #fff;
  font-size: 1em;
  text-align: center;
  padding: 1.5em 0 0 0; }

/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.6 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  .featherlight-next, .featherlight-previous {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    bottom: 0;
    left: 80%;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: rgba(0, 0, 0, 0); }

  .featherlight-previous {
    left: 25px;
    right: 80%; }

  .featherlight-next:hover, .featherlight-previous:hover {
    background: rgba(255, 255, 255, 0.25); }

  .featherlight-next span, .featherlight-previous span {
    display: none;
    position: absolute;
    top: 50%;
    left: 5%;
    width: 82%;
    text-align: center;
    font-size: 80px;
    line-height: 80px;
    margin-top: -40px;
    text-shadow: 0 0 5px #fff;
    color: #fff;
    font-style: normal;
    font-weight: 400; }

  .featherlight-next span {
    right: 5%;
    left: auto; }

  .featherlight-next:hover span, .featherlight-previous:hover span {
    display: inline-block; }

  .featherlight-first-slide.featherlight-last-slide .featherlight-next, .featherlight-first-slide.featherlight-last-slide .featherlight-previous, .featherlight-loading .featherlight-next, .featherlight-loading .featherlight-previous, .featherlight-swipe-aware .featherlight-next, .featherlight-swipe-aware .featherlight-previous {
    display: none; } }
@media only screen and (max-device-width: 1024px) {
  .featherlight-next:hover, .featherlight-previous:hover {
    background: 0 0; }

  .featherlight-next span, .featherlight-previous span {
    display: block; } }
@media only screen and (max-width: 1024px) {
  .featherlight-next, .featherlight-previous {
    top: 10px;
    right: 10px;
    left: 85%; }

  .featherlight-previous {
    left: 10px;
    right: 85%; }

  .featherlight-next span, .featherlight-previous span {
    margin-top: -30px;
    font-size: 40px; } }

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