body.mobile-nav-open .mobile-nav {
  height: 452px;
  visibility: visible;
}
body.mobile-nav-open .hamburger-open {
  display: none;
}
body.mobile-nav-open .hamburger-close {
  display: block;
}

header {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  max-width: 100vw;
  position: fixed;
  z-index: 90;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  header {
    padding: 0 10px;
    justify-content: space-between;
  }
}
header #header-hamburger,
header #header-back,
header .hamburger-close {
  display: none;
}
header #header-hamburger {
  padding-right: 10px;
}
header #header-hamburger:hover {
  cursor: pointer;
}
header #header-back {
  width: 20px;
  padding-left: 20px;
}
header #header-desktop-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 25vw;
  flex-direction: column;
}
@media (max-width: 768px) {
  header #header-desktop-wrapper {
    max-width: unset;
    justify-content: center;
  }
}
header #header-desktop-wrapper #header-desktop-search {
  display: flex;
}
@media (max-width: 768px) {
  header #header-desktop-wrapper #header-desktop-search {
    display: none;
  }
}
header #header-logo {
  display: block;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}
header #header-logo img {
  max-width: 150px;
  min-width: 50px;
  width: 80%;
}

.header-nav {
  margin: 0 auto;
  max-width: 980px;
  padding-left: 3px;
  padding-top: 0;
}

#subnav-wrapper {
  width: 100%;
}

.subnav-bar {
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #666;
  margin: 99px 0 auto;
  text-transform: uppercase;
  background: #f9f9f9;
}
.subnav-bar .subnav-links {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 980px;
  padding: 10px 0;
}
.subnav-bar .subnav-links li {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  justify-content: space-between;
  line-height: 18px;
  list-style: none;
  text-align: center;
  white-space: nowrap;
}
.subnav-bar .subnav-links li:not(:last-child)::after {
  border: 1px solid #d6d6d6;
  content: "";
  height: 25px;
  margin: auto;
}
.subnav-bar .subnav-links li:last-child {
  flex: 0;
}

.mobile-nav {
  position: fixed;
  top: 122px;
  height: 0;
  visibility: hidden;
  right: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  overflow: hidden;
  border-left: solid 1px black;
  border-bottom: solid 1px black;
  background: white;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.mobile-nav-item {
  width: 100%;
  text-align: center;
  padding: 10px;
}
.mobile-nav-item:not(:last-child) {
  border-bottom: solid 1px black;
}

.hamburger-open {
  display: none;
  position: relative;
  height: 4px;
  width: 30px;
  border-radius: 1px;
  background: black;
}
.hamburger-open::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 30px;
  border-radius: 1px;
  background: black;
  bottom: -10px;
  left: 0;
}
.hamburger-open::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 30px;
  border-radius: 1px;
  background: black;
  top: -10px;
  left: 0;
}

.hamburger-close {
  font-size: 70px;
  display: none;
}

@media (max-width: 992px) {
  .subnav-bar .subnav-links {
    padding-left: 7px;
    padding-right: 7px;
  }
  .subnav-bar .subnav-links a {
    font-size: 13px;
  }
}
@media (max-width: 790px) {
  div#page {
    margin-top: 65px;
  }

  header {
    height: 55px;
    position: fixed;
    top: 0;
    z-index: 100;
  }
  header .leaderboard {
    display: none;
  }
  header .hamburger-open {
    display: block;
  }
  header #header-back {
    display: block;
  }
  header #header-logo {
    padding: 0;
  }
  header .mobile-nav {
    top: 55px;
  }
  header #header-desktop-wrapper #header-desktop-search {
    display: none;
  }

  .subnav-bar {
    display: none;
  }
}
@media (max-width: 430px) {
  header {
    height: 55px;
    display: flex;
    align-items: center;
    border-bottom: solid 1px black;
  }
  header #header-logo {
    margin: 0;
    padding: 0;
  }
  header #header-logo img {
    height: 45px;
    width: auto;
  }

  .subnav-bar {
    top: 55px;
    margin: 0;
    padding: 0;
    z-index: 1000;
  }

  div#page {
    margin-top: 60px;
  }

  header #header-hamburger,
header #header-back {
    width: auto;
    padding: 0;
  }
}
#article-template #background-wrapper {
  display: flex;
  float: unset;
}
#article-template #background-wrapper #main {
  float: unset;
  width: calc(70% - 15px);
}
#article-template #background-wrapper #sidebar {
  width: 30%;
}
#article-template #background-wrapper #title,
#article-template #background-wrapper #article-section {
  width: 95%;
  margin: 0 auto;
}

#breadcrumbs {
  color: #000;
  font-size: 11px;
  padding: 0 0 5px;
}
#breadcrumbs li {
  display: block;
  float: left;
  white-space: nowrap;
}
#breadcrumbs li.last a {
  color: #000;
}
#breadcrumbs span.sep {
  padding: 0 5px;
}

#article-template #title h1 {
  border-bottom: 1px solid #999;
}

#article-section ul {
  padding-left: 4px;
  padding-right: 2px;
}
#article-section ul li {
  list-style-type: none;
}
#article-section .section p {
  margin: 0;
  margin-bottom: 15px;
  text-indent: 0;
  font-size: 18px;
  line-height: 30px;
  word-break: break-word;
}
#article-section #section-0 p {
  margin-bottom: 0;
}
#article-section img {
  display: block;
  height: auto;
  max-width: 100%;
}
#article-section .animatedGif {
  background: #eee;
  border: 1px solid #000;
  float: left;
  margin: 0 20px 0 0;
  max-width: 50%;
}

.tip p,
.warning p {
  margin-top: 10px;
}

.stepNum + div p::first-line {
  font-weight: bold;
  margin-top: 10px;
}

.stepNum {
  display: none;
  font-family: inherit;
}

.photo-attribution {
  display: none;
}

.author-google-plus {
  display: inline-block;
  margin-left: 5px;
}

#main-article-photo img {
  display: block;
  margin: 0 auto;
}

#related-articles {
  background-color: #f4f4f4;
  float: left;
  margin: 0 10px 0 0;
  max-width: 300px;
  padding: 5px 15px 0 5px;
}
#related-articles h3 {
  border-bottom: 1px solid #999;
  margin: 0 0 10px;
  padding: 0 4 5px;
}
#related-articles li {
  font-size: 13px;
  list-style: none;
  margin-bottom: 10px;
  padding-right: 10px;
}

.photo-cap {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 8px;
  text-align: center;
}

#article-section ol {
  font-weight: bold;
  font-size: 18px;
  padding-left: 15px;
}
#article-section ol p {
  font-weight: normal;
}
#article-section ol li.highlighted p::first-line {
  font-weight: bold;
}
#article-section figure.article-image img {
  width: 100%;
}

#things_needed {
  margin: 0;
  padding: 0;
}
#things_needed ul {
  -moz-column-count: 3;
  -moz-column-gap: 1.5em;
  -webkit-column-count: 3;
  -webkit-column-gap: 1.5em;
  column-count: 3;
  column-gap: 1.5em;
  margin-bottom: 1px;
  margin-top: 7px;
  padding: 0;
}
#things_needed ul li {
  color: #000;
  line-height: 1.4em;
  padding: 0;
  word-wrap: break-word;
}
#things_needed ul li p::before {
  content: "- ";
  display: inline-block;
  text-align: center;
  width: 1.5em;
}

#tips,
#tip,
#warning,
#warnings,
#things_needed,
#references,
#author,
#photo-credits {
  border: 1px solid #666;
  margin-bottom: 20px;
  padding: 5px 10px;
}
#tips h4,
#tip h4,
#warning h4,
#warnings h4,
#things_needed h4,
#references h4,
#author h4,
#photo-credits h4 {
  margin-bottom: 5px;
  font-weight: bold;
}
#tips li,
#tips p,
#tip li,
#tip p,
#warning li,
#warning p,
#warnings li,
#warnings p,
#things_needed li,
#things_needed p,
#references li,
#references p,
#author li,
#author p,
#photo-credits li,
#photo-credits p {
  margin-bottom: 10px;
  padding-left: 5px;
}

#author-avatar,
.author-avatar {
  float: left;
  margin: 10px 15px 0 0;
}

#you-may-like li {
  float: left;
  margin: 0 1% 10px 0;
  width: 24%;
}
#you-may-like a {
  color: #333;
}
#you-may-like img {
  margin: 0 0 5px;
}
#you-may-like .item-5 {
  clear: left;
}
#you-may-like h5 {
  font-size: 14px;
  line-height: 18px;
  width: 95%;
}

#category-template .article {
  margin-bottom: 20px;
}

#error-message {
  margin-bottom: 15px;
}

@media (max-width: 940px) {
  .feedback-widget {
    margin: 0 auto;
    width: 170px;
  }
}
@media (max-width: 935px) {
  #article-template #background-wrapper {
    flex-wrap: wrap;
  }
  #article-template #background-wrapper #main {
    width: 100%;
  }
  #article-template #background-wrapper #sidebar {
    width: 100%;
  }
}
@media (max-width: 728px) {
  #you-may-like li {
    float: none;
    margin: 0 0 10px;
    max-width: 320px;
    width: auto;
  }
}
@media (max-width: 520px) {
  #article-section .section p {
    margin-right: 5px;
    margin-left: 5px;
  }
  #article-section .animatedGif {
    float: none;
    margin: 0 auto 10px;
    max-width: 99%;
  }

  #sharebar {
    display: none;
  }

  .photo-cap {
    display: none;
  }

  #related-articles {
    display: none;
  }

  #main-article-photo {
    margin: 0;
    max-width: 100%;
  }

  .portrait #top-section {
    float: none;
    max-width: 100%;
  }

  #things_needed ul {
    -moz-column-count: 2;
    -moz-column-gap: 1.5em;
    -webkit-column-count: 2;
    -webkit-column-gap: 1.5em;
    column-count: 2;
    column-gap: 1.5em;
    margin-bottom: 1px;
    margin-top: 7px;
    padding: 0;
  }
}
#sidebar {
  position: sticky;
  position: -webkit-sticky;
  top: 60px;
  /* required */
  display: block;
  height: 900px;
}
@media (max-width: 992px) {
  #sidebar {
    display: none;
  }
}

.social-shares {
  left: 5px;
  margin: 0;
  position: fixed;
}
.social-shares .social-icon {
  position: relative;
  width: 35px;
  height: 40px;
}
.social-shares .social-icon .email-svg {
  fill: silver;
}
.social-shares .social-icon .facebook-svg {
  fill: #3b5998;
}
.social-shares .social-icon .twitter-svg {
  fill: #ff5700;
}
.social-shares .social-icon .pinterest-svg {
  fill: #cb2027;
}
.social-shares .social-icon .reddit-svg {
  padding-top: 2px;
  fill: #ff5700;
}
.social-shares .social-icon .linkedin-svg {
  fill: #007bb6;
}
.social-shares ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-shares ul li {
  margin-bottom: 10px;
  text-align: center;
  width: 40px;
}
.social-shares ul .facebook-social {
  color: #3b5998;
  margin: 0;
}
.social-shares ul .twitter-social {
  color: #0084b4;
}
.social-shares ul .pinterest-social {
  color: #c92228;
}
.social-shares ul .reddit-social {
  color: #ff4500;
}
.social-shares ul .share {
  color: #999;
  cursor: pointer;
}
.social-shares ul .share:hover {
  filter: brightness(65%);
}

@media (min-width: 1190px) {
  .social-shares {
    left: calc(50vw - 590px);
  }
}
@media (min-width: 651px) and (max-width: 1189px) {
  #article-template #main {
    padding-left: 50px;
  }
}
@media (max-width: 650px) {
  .social-shares {
    float: none;
    left: 0;
    margin: 0 0 10px;
    position: relative;
  }
  .social-shares ul li {
    display: inline-block;
  }
}
.nav-wrap-inner {
  background-color: #fff;
  border: 1px solid #999;
  color: #000;
  display: block;
  font-size: 9pt;
  padding: 4px;
  text-align: center;
  width: 100px;
}

.previous-wrap .nav-wrap-inner {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.next-wrap .nav-wrap-inner {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.nav-title-wrap {
  display: table;
  height: 64px;
  width: 100%;
}

.next-wrap {
  position: fixed;
  right: 15px;
  top: 300px;
}

.previous-wrap {
  left: 0;
  position: fixed;
  top: 300px;
}

.next-wrap:hover,
.previous-wrap:hover {
  cursor: pointer;
}

.next-title,
.previous-title {
  display: table-cell;
  font-weight: bold;
  margin-bottom: 4px;
  text-align: center;
  vertical-align: middle;
}

.nav-img-wrap {
  border-radius: 4px;
  height: 100px;
  overflow-x: hidden;
  width: 90px;
}

.next-image,
.previous-image {
  border-radius: 4px;
  display: block;
  height: 100px;
  margin-left: calc(100% - 90px);
  min-width: 100px;
}

.previous-title,
.previous-image {
  border-left: 0;
}

.article-arrow {
  margin: 0 auto 4px;
}

#article-nav .nav-wrap-inner {
  display: none;
}

@media (min-width: 1530px) {
  #article-nav .nav-wrap-inner {
    width: 200px;
  }

  #article-nav .nav-img-wrap {
    height: 150px;
    width: 190px;
  }
}
@media (min-width: 1390px) {
  #article-nav .nav-wrap-inner {
    display: block;
  }

  .next-image,
.previous-image {
    margin: 0 auto;
  }
}
@media (max-width: 728px) {
  #article-nav {
    display: none;
  }
}
footer {
  clear: both;
  max-width: 100%;
  text-align: center;
  border-top: solid 1px black;
  margin-top: 30px;
}
footer p {
  font-size: 13px;
  margin-bottom: 20px;
}
footer p .logos {
  margin-bottom: 50px;
}
footer .footer-links {
  list-style: none;
  margin: 0 auto;
  padding: 30px 0;
}
footer .footer-links li {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  padding: 0 15px;
  text-transform: uppercase;
}
footer a,
footer a:hover,
footer a:active {
  color: #000;
}
footer .image-right {
  border-left: 1px solid #999;
  padding: 20px;
  padding-top: 30px;
  position: relative;
  top: 24px;
  width: 130px;
}
footer .image-left {
  padding: 0 20px;
  width: 300px;
}
footer #copyright {
  padding: 0;
}

#partner-footer {
  border-top: 1px solid #e1e1e1;
  color: #616161;
  font-size: 13px;
  line-height: 15px;
  padding: 30px 0;
}
#partner-footer ul {
  margin-bottom: 30px;
}
#partner-footer ul li {
  display: inline-block;
  text-align: center;
}
#partner-footer li a {
  border-right: 1px solid #ccc;
  display: block;
  font-weight: bold;
  padding: 0 4px;
  text-transform: uppercase;
}
#partner-footer .last a {
  border-right: 0;
  padding: 0 0 0 4px;
}

@media (max-width: 520px) {
  footer .image-right {
    border: 0;
    padding: 0;
  }
  footer .image-left {
    display: none;
  }
}
.link-ads {
  position: relative;
  width: 100%;
  padding-top: 20px;
}

.inline-ad {
  display: inline-block;
  margin-top: 5px;
  width: 100%;
}

.main-ad {
  margin-top: 5px;
}

[id="#300x250_MTF"] {
  text-align: center;
}

.display-ad {
  width: 300px;
  margin: 0 auto;
}

.google .label {
  font-size: 12px;
  margin-bottom: 8px;
}
.google .label a {
  color: #000;
  font-size: 13.5px;
}
.google .title-section {
  font-size: 16px;
  margin-bottom: 5px;
}
.google .ad-content {
  margin: 0 0 10px;
}
.google .url {
  color: #666;
  font-family: Georgia, serif;
  font-weight: normal;
}

#google-single {
  margin-bottom: 0;
  margin-top: 1px;
}
#google-single .title-section .title {
  font-family: Verdana;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-decoration: underline;
}
#google-single .url {
  font-size: 13px;
}

#google-mobile-leaderboard {
  background: #fff;
  border-bottom: 1px solid #ccc;
  display: none;
  height: 50px;
  margin: -10px 0 10px;
  text-align: center;
}
#google-mobile-leaderboard iframe {
  margin: 0 auto;
}

#google-article-block {
  background: none;
  margin-bottom: 2em;
  margin-top: 1px;
  padding: 0;
}
#google-article-block .google {
  letter-spacing: 0.05em;
}
#google-article-block .google .label {
  margin: 0 0 0.5em;
}
#google-article-block .google .label a {
  color: #000;
  margin: 0;
}
#google-article-block .ad-content {
  border-bottom: 2px solid #ccc;
  clear: both;
  margin: 0;
  padding: 0.75em 0 0;
}
#google-article-block .ad-content.even {
  background-color: #f7f7f7;
}
#google-article-block .title-section {
  font-size: 17px;
  font-style: italic;
  letter-spacing: 0.1em;
  margin: 0 10px;
  text-decoration: underline;
}
#google-article-block .ad-cell {
  display: block;
  margin: 1em;
}
#google-article-block .ad-text {
  display: inline;
  margin: 0;
  padding: 0;
}
#google-article-block .ad-line {
  display: block;
}
#google-article-block .url {
  color: #000;
  display: block;
  font-family: inherit;
  margin-top: 0.33em;
  text-decoration: none;
}

.leaderboard {
  margin: 4px 0;
  text-align: center;
}

.side-ad {
  text-align: center;
}

#rad-results-template #content {
  float: none;
  width: auto;
}

#rad-results-template .notice {
  color: #555;
}

#rad-content-related-articles ul {
  list-style: none;
  padding-left: 0;
}

#taboola-bottom-main-column {
  margin-bottom: 20px;
}
#taboola-bottom-main-column #content img {
  max-width: auto;
}

.rad-content-article-title {
  font-size: 16px;
  margin-bottom: 2px;
}

.rad-content-article-summary {
  color: #000;
  font-size: 14px;
  margin-top: 0;
}

@media (max-width: 520px) {
  .small-screen-ad {
    margin: 10px 0;
    text-align: center;
  }

  #taboola-bottom-main-column {
    display: none;
  }

  #sidebar-link-unit,
.side-ad {
    display: none;
  }
}
@media (max-width: 768px) {
  .link-ads {
    padding-top: 0;
  }
}
#category-template #main,
body.home #main {
  float: none;
  padding: 10px;
}

#title.category-title {
  color: #fff;
  margin-bottom: 15px;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
}
#title.category-title.boating {
  background-color: #00695c;
}
#title.category-title.camping {
  background-color: #00828f;
}
#title.category-title.electronics {
  background-color: #827807;
}
#title.category-title.firearms {
  background-color: #0277bd;
}
#title.category-title.fishing {
  background-color: #558a2e;
}
#title.category-title.maintenance {
  background-color: #335d7a;
}
#title.category-title.hunting {
  background-color: #00695c;
}
#title.category-title.rving {
  background-color: #0098a6;
}
#title.category-title.trailers {
  background-color: #33691e;
}

.subnav-links li .boating:hover {
  color: #00695c;
}
.subnav-links li .camping:hover {
  color: #00828f;
}
.subnav-links li .electronics:hover {
  color: #827807;
}
.subnav-links li .firearms:hover {
  color: #0277bd;
}
.subnav-links li .fishing:hover {
  color: #558a2e;
}
.subnav-links li .maintenance:hover {
  color: #335d7a;
}
.subnav-links li .hunting:hover {
  color: #00695c;
}
.subnav-links li .rving:hover {
  color: #0098a6;
}
.subnav-links li .trailers:hover {
  color: #33691e;
}

#featured {
  border-bottom: 1px solid #333;
  clear: both;
  margin-bottom: 30px;
  margin-top: 25px;
  padding-bottom: 20px;
  width: 100%;
}
#featured img {
  display: block;
  height: auto;
  width: 100%;
}
#featured h2 {
  text-align: center;
}

#editors {
  clear: both;
  width: 100%;
}
#editors h3 {
  border-bottom: 1px solid #999;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  padding-bottom: 20px;
}
#editors img {
  display: block;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 400px;
  width: 100%;
}
#editors p.article-meta {
  font-family: inherit;
  padding: 5px 10px;
}

#most-popular {
  background-color: #f9f9f9;
  padding-left: calc((100% - 1000px) / 2);
  padding-right: calc((100% - 1000px) / 2);
  margin: 0 auto;
}
#most-popular h2 {
  padding: 15px 15px 15px 0;
}
#most-popular img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
}

#most-popular h3,
#editors h3 {
  font-size: 18px;
  height: 50px;
  line-height: 24px;
  overflow: hidden;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 1024px) {
  #most-popular .fullwidth_wrapper {
    padding-left: 0;
  }
}
@media (max-width: 790px) {
  #title.category-title {
    position: relative;
    top: 130px;
  }

  html #category-template #main,
html body.home #main {
    padding: 0;
  }

  #most-popular h2 {
    text-align: center;
  }
}
@media (max-width: 400px) {
  #title.category-title {
    top: 125px;
  }

  #most-popular {
    padding: 15px;
  }
}
* {
  box-sizing: border-box;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100vw;
}

.row {
  flex-direction: column;
}
.row div[class*=xs-1] {
  width: 8.3333333333%;
}
.row div[class*=xs-2] {
  width: 16.666666666%;
}
.row div[class*=xs-3] {
  width: 25%;
}
.row div[class*=xs-4] {
  width: 33.333333333%;
}
.row div[class*=xs-5] {
  width: 41.666666666%;
}
.row div[class*=xs-6] {
  width: 50%;
}
.row div[class*=xs-7] {
  width: 58.333333333%;
}
.row div[class*=xs-8] {
  width: 66.666666666%;
}
.row div[class*=xs-9] {
  width: 75%;
}
.row div[class*=xs-10] {
  width: 83.3333333333%;
}
.row div[class*=xs-11] {
  width: 91.6666666666%;
}
.row div[class*=xs-12] {
  width: 100%;
}

.row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

div[class^=col-] {
  position: relative;
  min-height: 1px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }

  .row {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .row div[class^=col-] {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
  }
  .row div[class*=sm-1] {
    width: 8.3333333333%;
  }
  .row div[class*=sm-2] {
    width: 16.666666666%;
  }
  .row div[class*=sm-3] {
    width: 25%;
  }
  .row div[class*=sm-4] {
    width: 33.333333333%;
  }
  .row div[class*=sm-5] {
    width: 41.666666666%;
  }
  .row div[class*=sm-6] {
    width: 50%;
  }
  .row div[class*=sm-7] {
    width: 58.333333333%;
  }
  .row div[class*=sm-8] {
    width: 66.666666666%;
  }
  .row div[class*=sm-9] {
    width: 75%;
  }
  .row div[class*=sm-10] {
    width: 83.3333333333%;
  }
  .row div[class*=sm-11] {
    width: 91.6666666666%;
  }
  .row div[class*=sm-12] {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }

  .row {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .row div[class^=col-] {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
  }
  .row div[class*=md-1] {
    width: 8.3333333333%;
  }
  .row div[class*=md-2] {
    width: 16.666666666%;
  }
  .row div[class*=md-3] {
    width: 25%;
  }
  .row div[class*=md-4] {
    width: 33.333333333%;
  }
  .row div[class*=md-5] {
    width: 41.666666666%;
  }
  .row div[class*=md-6] {
    width: 50%;
  }
  .row div[class*=md-7] {
    width: 58.333333333%;
  }
  .row div[class*=md-8] {
    width: 66.666666666%;
  }
  .row div[class*=md-9] {
    width: 75%;
  }
  .row div[class*=md-10] {
    width: 83.3333333333%;
  }
  .row div[class*=md-11] {
    width: 91.6666666666%;
  }
  .row div[class*=md-12] {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1100px;
  }

  .row div[class^=col-] {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
  }
  .row div[class*=lg-1],
.row div[class*=xl-1] {
    width: 8.3333333333%;
  }
  .row div[class*=lg-2],
.row div[class*=xl-2] {
    width: 16.666666666%;
  }
  .row div[class*=lg-3],
.row div[class*=xl-3] {
    width: 25%;
  }
  .row div[class*=lg-4],
.row div[class*=xl-4] {
    width: 33.333333333%;
  }
  .row div[class*=lg-5],
.row div[class*=xl-5] {
    width: 41.666666666%;
  }
  .row div[class*=lg-6],
.row div[class*=xl-6] {
    width: 50%;
  }
  .row div[class*=lg-7],
.row div[class*=xl-7] {
    width: 58.333333333%;
  }
  .row div[class*=lg-8],
.row div[class*=xl-8] {
    width: 66.666666666%;
  }
  .row div[class*=lg-9],
.row div[class*=xl-9] {
    width: 75%;
  }
  .row div[class*=lg-10],
.row div[class*=xl-10] {
    width: 83.3333333333%;
  }
  .row div[class*=lg-11],
.row div[class*=xl-11] {
    width: 91.6666666666%;
  }
  .row div[class*=lg-12],
.row div[class*=xl-12] {
    width: 100%;
  }
}
.nftitle {
  text-align: center;
  padding: 20px;
}

.nfcontainer {
  margin: 0 auto;
}
.nfcontainer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}
.nfcontainer__row--item {
  position: relative;
  width: 280px;
  height: 250px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 15px 0px;
  overflow: hidden;
  margin-bottom: 20px;
}
.nfcontainer__row--item-image {
  width: 100%;
  height: 70%;
  position: absolute;
  top: 0;
  left: 0;
}
.nfcontainer__row--item-image img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.nfcontainer__row--item-title {
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 0;
  background: white;
  color: black;
  padding: 10px;
  min-height: 30%;
}
.nfcontainer__row--item-title a {
  text-decoration: none;
  color: black;
}

input {
  font-family: "Raleway", sans-serif;
}

header .search__form {
  margin: 5px auto 0px;
  width: 150px;
  height: 30px;
  position: relative;
  overflow: hidden;
  border-bottom: solid 1px #666;
}
header .search__form input {
  height: 100%;
  width: 100%;
  border: none;
  padding: 0 40px 0 10px;
  outline: none;
  background: white;
  font-size: 14px;
}
header .search__form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 35px;
  border-radius: 0 4px 4px 0;
  background: white;
  border: none;
  cursor: pointer;
}
header .search__form button:active {
  outline: none;
}
header .search__form button svg {
  margin-top: 4px;
}

.search__form {
  margin: 5px auto 0px;
  width: 250px;
  height: 30px;
  position: relative;
  overflow: hidden;
  border-bottom: solid 1px #666;
}
.search__form input {
  height: 100%;
  width: 100%;
  border: none;
  padding: 0 40px 0 10px;
  outline: none;
  background: white;
  font-size: 14px;
}
.search__form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 35px;
  border-radius: 0 4px 4px 0;
  background: white;
  border: none;
  cursor: pointer;
}
.search__form button:active {
  outline: none;
}
.search__form button svg {
  margin-top: 4px;
}

.search-results h4 {
  margin-bottom: 20px;
}
.search-results h4,
.search-results .search__form {
  display: inline-block;
}
.search-results .search__form {
  width: 225px;
  position: relative;
  margin: 0;
  margin-bottom: 20px;
  height: 25px;
  vertical-align: bottom;
  border-bottom: solid 1px #666;
}
.search-results .search__form input {
  height: 100%;
  width: 100%;
  padding: 0 40px 0 10px;
  outline: none;
  font-family: "Raleway", sans-serif;
  background: white;
  font-size: 14px;
  vertical-align: top;
  margin-left: 0;
}
.search-results .search__form button {
  position: absolute;
  top: 0;
  right: 0px;
  height: 100%;
  width: auto;
  background: transparent;
  cursor: pointer;
  vertical-align: top;
}
.search-results .search__form button:active {
  outline: none;
}

@media (max-width: 430px) {
  .search-results .inline-result {
    display: block;
    font-size: 30px;
  }
  .search-results .search__form {
    width: 100%;
  }
  .search-results .search__form input {
    margin-left: 0;
  }
}
@media (max-width: 430px) {
  .search__form {
    display: none;
  }

  header .search__form {
    display: block;
  }
}
.search-results {
  max-width: 780px;
  padding: 0 2rem;
  margin: 2rem auto;
  min-height: calc(100vh - 350px);
  font-family: "Raleway", sans-serif;
}
.search-results-title {
  margin-bottom: 15px;
}
.search-results .search-results-title {
  font-size: 20px;
}
.search-results .search-results-title h4 {
  font-weight: 500;
}
.search-results .search-results-title h4 .keyword {
  font-weight: 400;
  color: black;
}
.search-results .search-results-cards article.search-result-card {
  width: 100%;
  border: none;
  padding: 5px;
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
}
.search-results .search-results-cards article.search-result-card .title-field {
  font-size: 18px;
  font-weight: 500;
  margin: 0rem 0 0rem;
  text-decoration: underline;
  line-height: 1.2;
}
.search-results .search-results-cards article.search-result-card .title-field a {
  color: black;
}
.search-results .search-results-cards article.search-result-card .title-field a:hover {
  color: #337ab7;
  text-decoration: underline;
}
.search-results .search-results-cards article.search-result-card .summary-field {
  margin: 0.2rem 0 1rem 0;
  font-weight: 100;
  font-size: 14px;
  line-height: 18px;
  font-family: "Raleway", sans-serif;
}
.search-results .search-results-cards article.search-result-card .relevance-field {
  margin: 5px 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 10px;
  font-weight: 200;
  display: block;
}
.search-results .search-results-cards article.search-result-card .relevance-field > span {
  font-weight: 400;
  color: #337ab7;
}
.search-results .search-results-cards article.search-result-card:first-child {
  border-top: none;
}
.search-results .search-results-cards article.search-result-card::after {
  content: "";
  width: 3px;
  margin: 0 auto;
  height: 40%;
  background: #337ab7;
  position: absolute;
  top: 40%;
  left: -10px;
  transform: translateY(-50%);
}

#main {
  padding: 0;
}

.about h2 {
  margin: 20px auto;
}
.about__header {
  text-align: center;
  color: #124680;
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
}
.about__contributors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about__contributors--item {
  width: 250px;
  height: 390px;
  margin: 10px;
  border-radius: 4px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
}
.about__contributors--item-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  text-align: center;
  background: #124680;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.about__contributors--item-top-image {
  width: auto;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}
.about__contributors--item-top-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 75px;
}
.about__contributors--item-top-name {
  font-size: 16px;
  color: white;
  max-width: 50%;
}
.about__contributors--item-top-name span {
  display: block;
}
.about__contributors--item-bottom {
  position: absolute;
  top: 105px;
  left: 0;
  height: 290px;
  padding: 15px;
  font-family: "Lato", sans-serif;
}
.about__contributors--item-bottom-summary {
  font-size: 12px;
  font-weight: 200;
  line-height: 1.5;
  color: black;
}
.about__contributors--item-bottom-social {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 12px;
  display: flex;
  color: #124680;
}
.about__contributors--item-bottom-social-icon:nth-child(2) {
  margin-left: 10px;
}
.about__contributors--item:hover {
  transform: translateY(-2px);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.17);
}
.about__aboutus {
  width: 750px;
  max-width: 90%;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
  font-family: "Lato", sans-serif;
  color: black;
  padding: 20px;
  line-height: 1.4;
}
.about__team--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about__team--row-item {
  width: 190px;
  height: 230px;
  margin: 10px;
  position: relative;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
}
.about__team--row-item img {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 70%;
}
.about__team--row-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Lato", sans-serif;
  color: black;
}
.about__contact {
  margin-bottom: 30px;
}
.about__contact--row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.about__contact--row-item {
  width: 300px;
  border-radius: 4px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
  font-family: "Lato", sans-serif;
  padding: 15px;
  margin: 10px;
  color: black;
}
.about__contact--row-item-header {
  color: #124680;
  font-size: 22px;
}
.about__contact--row-item a {
  color: #124680;
}

@media (max-width: 430px) {
  .about__team--row-item {
    width: 40%;
    height: 200px;
  }

  .about__contributors--item {
    width: 90%;
    height: auto;
  }
  .about__contributors--item-top {
    position: unset;
    justify-content: center;
  }
  .about__contributors--item-top-image {
    margin-right: 15px;
  }
  .about__contributors--item-bottom {
    position: unset;
    height: auto;
    padding-bottom: 45px;
  }
}
.slider-container {
  width: 95%;
  height: 250px;
  overflow-x: hidden;
  position: relative;
  border: solid 1px rgba(0, 0, 0, 0.1);
  margin: 10px auto 15px;
}
.slider-container .slide-wrapper {
  background: white;
  height: 100%;
  display: flex;
  transition: transform 200ms ease-in-out;
  transition-timing-function: cubic-bezier(0.05, 0.15, 0.97, 0.24);
  opacity: 1;
}
.slider-container .slide-wrapper.remove-transition {
  transition: transform 100ms ease-in-out;
}
.slider-container .slide-wrapper .slide {
  position: relative;
  height: 100%;
  display: inline-block;
}
.slider-container .slide-wrapper .slide .slide-background, .slider-container .slide-wrapper .slide .default-background {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 20px);
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .slider-container .slide-wrapper .slide .slide-background, .slider-container .slide-wrapper .slide .default-background {
    margin-right: 5px;
    width: calc(50% - 5px);
  }
}
.slider-container .slide-wrapper .slide .default-background {
  background-size: 70%;
}
.slider-container .slide-wrapper .slide .article-column {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  top: 0;
  right: 0;
  width: 50%;
  color: black;
  z-index: 2;
  height: 100%;
  padding: 15px 30px 20px 0px;
}
.slider-container .slide-wrapper .slide .article-column h1 {
  font-size: 20px;
  text-align: center;
  margin: 0;
}
.slider-container .slide-wrapper .slide .article-column li {
  -webkit-font-smoothing: antialiased;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.4;
  padding: 2px 5px;
}
.slider-container .slide-wrapper .slide .article-column li:nth-child(even) {
  background: #f4f4f4;
}
@media (max-width: 768px) {
  .slider-container .slide-wrapper .slide .article-column li:nth-child(4), .slider-container .slide-wrapper .slide .article-column li:nth-child(5) {
    display: none;
  }
  .slider-container .slide-wrapper .slide .article-column li:first-child {
    display: block;
  }
}
.slider-container .slide-wrapper .slide .article-column li.rcp-header {
  text-align: center;
  font-family: "Tahoma", sans-serif;
  margin-bottom: 10px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .slider-container .slide-wrapper .slide .article-column li.rcp-header {
    margin-bottom: 5px;
  }
}
.slider-container .slide-wrapper .slide .article-column li .slide-link {
  position: relative;
  display: block;
  text-decoration: none;
}
.slider-container .slide-wrapper .slide .article-column li .slide-link:after {
  position: absolute;
  top: 10px;
  left: -10px;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: black;
}
.slider-container .slide-wrapper .slide .article-column li .slide-link.current-target {
  text-decoration: underline;
}
.slider-container .slider-left-arrow, .slider-container .slider-right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
}
.slider-container .slider-left-arrow {
  left: 5px;
}
.slider-container .slider-right-arrow {
  left: calc(100% - 35px);
}
.slider-container .indicator-container {
  position: absolute;
  bottom: 3px;
  display: flex;
  align-items: center;
  left: 68%;
  z-index: 1000;
}
@media (max-width: 430px) {
  .slider-container .indicator-container {
    left: 64%;
  }
}
.slider-container .indicator-container .indicator-dot {
  margin: 0 3px;
  display: block;
  width: 5px;
  height: 5px;
  border: solid 1px black;
  border-radius: 50%;
  background: white;
}
.slider-container .indicator-container .indicator-dot.current {
  background: black;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
}

body {
  background: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  margin: 0 auto;
}

body:not(.animated-gif) #background-wrapper {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #fff;
  box-sizing: border-box;
  float: left;
  width: 100%;
}

p,
li {
  font-family: "PT Serif", serif;
  line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
}

h1 {
  font-size: 30px;
  font-weight: bold;
  margin-top: 1px;
}

h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 7px;
  margin-top: 7px;
}

h3,
h4,
h5,
h6 {
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 7px;
  margin-top: 7px;
  font-weight: 500;
}

a {
  color: #337ab7;
  text-decoration: none;
}

.title-span {
  padding-left: 5px;
  padding-right: 5px;
}

.link {
  text-decoration: none;
}

.clearfix {
  clear: both;
}

#page {
  margin: 0 auto;
  max-width: 1100px;
}

#main .title-section a:hover {
  color: #222;
}

.Article #content {
  padding-top: 20px;
}

#content {
  height: 100%;
  margin: 0 0 1px;
}

#title {
  margin: 5px 0;
}

#title h1 {
  font-size: 24px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

#title cite {
  color: #000;
  display: block;
  font-size: 12px;
  padding-top: 5px;
  text-align: left;
  width: 100%;
}

.dont-break-out {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -ms-word-break: break-all;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
}

.hidden {
  display: none;
}

.assistive-text {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

#printmsg {
  display: none;
}

.btn {
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.menu-toggle {
  background: #ccc;
  border: 0;
  display: none;
  font-size: 22px;
  line-height: 1;
  padding: 4px 10px;
  position: absolute;
  right: 10px;
  text-align: center;
  text-shadow: none;
  top: 5px;
}

.menu-toggle-text {
  display: none;
}

#brand-section,
#contact-section {
  margin-top: 20px;
}

@media (max-width: 992px) {
  #content-brand {
    margin-bottom: 10px;
  }
}
@media (max-width: 790px) {
  #content-brand {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle-text {
    clip: none;
    color: #fff;
    display: block;
    font-size: 16px;
    padding: 10px;
    position: relative;
  }
}
@media (max-width: 728px) {
  #banner-ad-top,
#banner-ad-btm {
    display: none;
  }
}
@media (max-width: 520px) {
  .animated-gif .section,
.animated-gif #google-article-single {
    margin: 0 0 40px;
  }

  #page {
    padding: 0;
  }

  #navigation a {
    padding: 5px 10px 5px 9px;
  }

  #content {
    margin: 0 3px;
  }
}
@media (max-width: 400px) {
  #header-logo img {
    min-width: 220px;
    width: 90%;
  }

  #sidebar h3,
#sidebar ul {
    margin-left: 10px;
  }

  h1 {
    font-size: 16px;
  }
}
@keyframes slide-in {
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slide-in {
  100% {
    -webkit-transform: translateX(0%);
  }
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a,
a:visited {
    color: #444 !important;
    text-decoration: underline;
  }

  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  @page {
    margin: 0.5cm;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  #article-template #main {
    width: 100%;
    margin: 0;
  }

  #article-template #article-section {
    width: 100%;
  }

  #article-template #section-column,
#article-template #sidebar,
#header,
#subnav,
#breadcrumbs,
#sharebar,
footer {
    display: none;
  }

  #printmsg {
    display: block;
    border-bottom: 1px solid #999;
    padding-bottom: 1em;
    margin-bottom: 1.5em;
  }

  #printmsg p {
    font-size: 2em;
  }

  #printmsg a {
    text-decoration: none;
  }

  #printmsg span {
    float: right;
  }

  #references a[href]:after,
#resources a[href]:after {
    content: " (" attr(href) ")";
  }

  #references abbr[title]:after,
#resources abbr[title]:after {
    content: " (" attr(title) ")";
  }
}

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