/*
 * Redesign Core
 *
 * Core CSS rules
 *
 */
/*
 * Redesign Base
 *
 * Mixins and Variables
 * 
 */
/**
 * Susy breakpoint variables for min to max pairings
 * https://github.com/at-import/breakpoint/wiki/Basic-Media-Queries#default-single-and-pair
 *
 */
/**
 * Susy shorthand maps altering the number of columns and max-widths for each breakpoint
 * These maps are passed into the breakpoint contexts below
 *
 */
/**
 * This map is used to reset a grid context to 0 columns
 * uncomment debug to see the out put in the terminal
 * TO-DO Usage of this in get-layout mixin is currently not producing any output
 * so needs understanding why
 *
 */
/**
 * Set global box-sizing:border-box
 *
 */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  box-shadow: none !important;
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
  .modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857px; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0; }
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }

  .modal-sm {
    width: 300px; } }
@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }
.responsive-img img {
  display: block;
  width: 100% \9;
  max-width: 100%;
  min-width: 100%;
  height: auto; }

.responsive-img--3x2 {
  position: relative;
  width: 100%;
  padding-top: 66%;
  box-sizing: border-box;
  display: block; }
  .responsive-img--3x2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; }

.responsive-img--16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  box-sizing: border-box;
  display: block; }
  .responsive-img--16x9 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; }

.u-clearfix {
  zoom: 1; }
  .u-clearfix:before, .u-clearfix:after {
    content: "";
    display: table; }
  .u-clearfix:after {
    clear: both; }

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media screen and (min-width: 1300px) {
    .container {
      margin: auto;
      width: 1280px; } }

.ad-container {
  margin-left: auto;
  margin-right: auto;
  position: relative; }
  .ad-container:before, .ad-container:after {
    content: " ";
    display: table; }
  .ad-container:after {
    clear: both; }
  .ad-container:before, .ad-container:after {
    content: " ";
    display: table; }
  .ad-container:after {
    clear: both; }
  @media screen and (min-width: 700px) {
    .ad-container {
      width: 640px; } }
  @media screen and (min-width: 768px) {
    .ad-container {
      width: 748px; } }
  @media screen and (min-width: 960px) {
    .ad-container {
      width: 960px;
      max-width: 960px; } }
  @media screen and (min-width: 1300px) {
    .ad-container {
      max-width: 1280px;
      width: 1280px; } }

.slab__nav-list {
  list-style: none;
  margin: 0;
  padding: 0; }

.slab__title-link {
  text-decoration: none;
  color: inherit; }

.slab__title {
  margin: 0;
  padding: 0; }

.u-adaptive-container,
.slab__inner {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .u-adaptive-container:after,
  .slab__inner:after {
    content: " ";
    display: block;
    clear: both; }
  @media (min-width: 320px) {
    .u-adaptive-container,
    .slab__inner {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto; }
      .u-adaptive-container:after,
      .slab__inner:after {
        content: " ";
        display: block;
        clear: both; } }
  @media (min-width: 480px) {
    .u-adaptive-container,
    .slab__inner {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto; }
      .u-adaptive-container:after,
      .slab__inner:after {
        content: " ";
        display: block;
        clear: both; } }
  @media (min-width: 640px) {
    .u-adaptive-container,
    .slab__inner {
      max-width: 748px;
      margin-left: auto;
      margin-right: auto; }
      .u-adaptive-container:after,
      .slab__inner:after {
        content: " ";
        display: block;
        clear: both; } }
  @media (min-width: 960px) {
    .u-adaptive-container,
    .slab__inner {
      max-width: 960px;
      margin-left: auto;
      margin-right: auto; }
      .u-adaptive-container:after,
      .slab__inner:after {
        content: " ";
        display: block;
        clear: both; } }
  @media (min-width: 1300px) {
    .u-adaptive-container,
    .slab__inner {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto; }
      .u-adaptive-container:after,
      .slab__inner:after {
        content: " ";
        display: block;
        clear: both; } }

.slab.slab--commercial {
  background-color: #F3F3F3;
  color: #646464;
  cursor: pointer;
  text-decoration: none; }
  .slab.slab--commercial:visited {
    background-color: #F3F3F3;
    color: #646464;
    text-decoration: none; }
  .slab.slab--commercial:hover, .slab.slab--commercial:active {
    background-color: #F3F3F3;
    color: #222222;
    text-decoration: none; }

.slab.slab--commercial nav .nav-commercial__list-item a, .user-account__sign-in-link a, .user-account__profile, .slab.slab--commercial .site-search__toggle-btn {
  background-color: transparent;
  color: #646464;
  cursor: pointer;
  text-decoration: none; }
  .slab.slab--commercial nav .nav-commercial__list-item a:visited, .user-account__sign-in-link a:visited, .user-account__profile:visited, .slab.slab--commercial .site-search__toggle-btn:visited {
    background-color: transparent;
    color: #646464;
    text-decoration: none; }
  .slab.slab--commercial nav .nav-commercial__list-item a:hover, .user-account__sign-in-link a:hover, .user-account__profile:hover, .slab.slab--commercial .site-search__toggle-btn:hover, .slab.slab--commercial nav .nav-commercial__list-item a:active, .user-account__sign-in-link a:active, .user-account__profile:active, .slab.slab--commercial .site-search__toggle-btn:active {
    background-color: transparent;
    color: #222222;
    text-decoration: none; }

html.desktop .slab.slab--commercial .nav-commercial__list-item a:hover, .user-account__sign-in-link a:hover, .user-account__profile:hover {
  -webkit-transition: color 0.11s, cubic-bezier(0.865, 0.02, 0.13, 1.02), background-color 0.11s, cubic-bezier(0.865, 0.02, 0.13, 1.02), border-color 0.11s, cubic-bezier(0.865, 0.02, 0.13, 1.02);
  -o-transition: color 0.11s, cubic-bezier(0.865, 0.02, 0.13, 1.02), background-color 0.11s, cubic-bezier(0.865, 0.02, 0.13, 1.02), border-color 0.11s, cubic-bezier(0.865, 0.02, 0.13, 1.02);
  transition: color 0.11s, cubic-bezier(0.865, 0.02, 0.13, 1.02), background-color 0.11s, cubic-bezier(0.865, 0.02, 0.13, 1.02), border-color 0.11s, cubic-bezier(0.865, 0.02, 0.13, 1.02); }

.slab.slab--commercial nav .nav-commercial__list-item a, .user-account__sign-in-link a, .user-account__profile, .slab.slab--commercial .site-search__toggle-btn {
  margin-bottom: 0.1rem;
  padding: 0.8rem 1rem 0.3rem; }

.slab.slab--commercial nav .nav-commercial__list-item a, .user-account, .user-account__sign-in-link a, .slab.slab--commercial .site-search__toggle-btn {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem; }

.slab--primary-navigation {
  background-color: #3A2E94; }

.contextual-menu, .editorial-navigation .breadcrumbs {
  background-color: #ebeaf4; }

.contextual-menu li, .editorial-navigation .breadcrumbs__item, .editorial-navigation .breadcrumbs__item--home {
  background-color: #ebeaf4;
  color: #3A2E94;
  cursor: pointer;
  text-decoration: none; }
  .contextual-menu li:visited, .editorial-navigation .breadcrumbs__item:visited, .editorial-navigation .breadcrumbs__item--home:visited {
    background-color: #ebeaf4;
    color: #3A2E94;
    text-decoration: none; }
  .contextual-menu li:hover, .editorial-navigation .breadcrumbs__item:hover, .editorial-navigation .breadcrumbs__item--home:hover, .contextual-menu li:active, .editorial-navigation .breadcrumbs__item:active, .editorial-navigation .breadcrumbs__item--home:active {
    background-color: #3A2E94;
    color: #ffffff;
    text-decoration: none; }

.contextual-menu.homepage li {
  background-color: #3A2E94;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none; }
  .contextual-menu.homepage li:visited {
    background-color: #3A2E94;
    color: #ffffff;
    text-decoration: none; }
  .contextual-menu.homepage li:hover, .contextual-menu.homepage li:active {
    background-color: #ffc600;
    color: #222222;
    text-decoration: none; }

.contextual-menu.homepage {
  background-color: #3A2E94; }

.editorial-navigation .breadcrumbs__item--home {
  background-color: #ffffff;
  color: #3A2E94;
  cursor: pointer;
  text-decoration: none; }
  .editorial-navigation .breadcrumbs__item--home:visited {
    background-color: #ffffff;
    color: #3A2E94;
    text-decoration: none; }
  .editorial-navigation .breadcrumbs__item--home:hover, .editorial-navigation .breadcrumbs__item--home:active {
    background-color: #ffffff;
    color: #3A2E94;
    text-decoration: none; }

.slab--masthead {
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  text-decoration: none; }
  .slab--masthead:visited {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none; }
  .slab--masthead:hover, .slab--masthead:active {
    background-color: #ffffff;
    color: #000000;
    text-decoration: none; }

.slab--masthead .slab__inner {
  padding: 1rem 0 1rem 0; }
  @media screen and (min-width: 640px) {
    .slab--masthead .slab__inner {
      padding: 2rem 0 2rem 0; } }

.slab--masthead .slab__inner {
  width: 20rem; }
  @media screen and (min-width: 640px) {
    .slab--masthead .slab__inner {
      width: 28rem; } }
  @media screen and (min-width: 960px) {
    .slab--masthead .slab__inner {
      width: 34rem; } }

.user-account__list {
  background-color: #e9e9e9; }

.user-account__list-item {
  border-top: solid thin grey;
  margin: 1rem;
  padding: .8rem 0 0 0; }

.user-account__list-item-link {
  background-color: transparent;
  color: #646464;
  cursor: pointer;
  text-decoration: none; }
  .user-account__list-item-link:visited {
    background-color: transparent;
    color: #646464;
    text-decoration: none; }
  .user-account__list-item-link:hover, .user-account__list-item-link:active {
    background-color: transparent;
    color: #222222;
    text-decoration: none; }

.user-account__list-item--user-name {
  color: grey; }

.janrain-modal .capture_btn {
  background-color: #ffc600;
  color: #222222;
  cursor: pointer;
  outline: 0;
  text-decoration: none; }
  .janrain-modal .capture_btn:hover {
    background-color: #3A2E94;
    color: #ffffff;
    text-decoration: none; }
  .touchevents .janrain-modal .capture_btn:hover, .janrain-modal .touchevents .capture_btn:hover {
    background-color: #ffc600;
    color: #222222; }
  .janrain-modal .is-loading.capture_btn {
    background-color: #3A2E94;
    color: #ffffff; }
  .touchevents .janrain-modal .is-loading.capture_btn, .janrain-modal .touchevents .is-loading.capture_btn {
    background-color: #3A2E94;
    color: #ffffff; }

.janrain-aside a.janrain-aside__centerText, .janrain-content .terms a, .janrain-footer__link--register, .janrain-modal--profile-signIn a, .janrain-modal.janrain-modal--profile-signIn a, .janrain-profile .capture_resendLink, .janrain-popup a.janrain-popup__link {
  background-color: transparent;
  color: #3A2E94;
  cursor: pointer;
  text-decoration: none; }
  .janrain-aside a.janrain-aside__centerText:visited, .janrain-content .terms a:visited, .janrain-footer__link--register:visited, .janrain-modal--profile-signIn a:visited, .janrain-profile .capture_resendLink:visited, .janrain-popup a.janrain-popup__link:visited {
    background-color: transparent;
    color: #3A2E94;
    text-decoration: none; }
  .janrain-aside a.janrain-aside__centerText:hover, .janrain-content .terms a:hover, .janrain-footer__link--register:hover, .janrain-modal--profile-signIn a:hover, .janrain-profile .capture_resendLink:hover, .janrain-popup a.janrain-popup__link:hover, .janrain-aside a.janrain-aside__centerText:active, .janrain-content .terms a:active, .janrain-footer__link--register:active, .janrain-modal--profile-signIn a:active, .janrain-profile .capture_resendLink:active, .janrain-popup a.janrain-popup__link:active {
    background-color: transparent;
    color: #3A2E94;
    text-decoration: none; }

.editorial-navigation.open .link-tree-secondary__item a {
  background-color: #e9e9e9;
  color: #3A2E94;
  cursor: pointer;
  text-decoration: none; }
  .editorial-navigation.open .link-tree-secondary__item a:visited {
    background-color: #e9e9e9;
    color: #3A2E94;
    text-decoration: none; }
  .editorial-navigation.open .link-tree-secondary__item a:hover, .editorial-navigation.open .link-tree-secondary__item a:active {
    background-color: #ffc600;
    color: #222222;
    text-decoration: none; }

.editorial-navigation.open .link-tree__section-title > a {
  background-color: #3A2E94;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none; }
  .editorial-navigation.open .link-tree__section-title > a:visited {
    background-color: #3A2E94;
    color: #ffffff;
    text-decoration: none; }
  .editorial-navigation.open .link-tree__section-title > a:hover, .editorial-navigation.open .link-tree__section-title > a:active {
    background-color: #ffc600;
    color: #222222;
    text-decoration: none; }

.slab--footer {
  background-color: #222222; }

.slab--footer a {
  background-color: transparent;
  color: #808080;
  cursor: pointer;
  text-decoration: none; }
  .slab--footer a:visited {
    background-color: transparent;
    color: #808080;
    text-decoration: none; }
  .slab--footer a:hover, .slab--footer a:active {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none; }

.slab--footer a {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 21px;
  line-height: 2.1rem;
  text-decoration: none; }

.slab--footer .block--title {
  color: #ffffff;
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 27px;
  line-height: 2.7rem;
  padding: 0;
  margin: 2rem 0 0.6rem 0; }

.slab--legal {
  background-color: #000000;
  color: #ffffff;
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
  line-height: 1.8rem;
  margin-top: 0;
  margin-bottom: 0; }
  @media screen and (min-width: 320px) {
    .slab--legal {
      text-align: center; } }
  @media screen and (min-width: 960px) {
    .slab--legal {
      text-align: left; } }

.slab--legal a {
  background-color: transparent;
  color: #808080;
  cursor: pointer;
  text-decoration: none; }
  .slab--legal a:visited {
    background-color: transparent;
    color: #808080;
    text-decoration: none; }
  .slab--legal a:hover, .slab--legal a:active {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none; }

.editorial-navigation {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 32px;
  line-height: 3.2rem;
  background: transparent; }

.editorial-navigation-morecontainer__more {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 32px;
  line-height: 3.2rem;
  text-transform: none; }

.editorial-navigation .breadcrumbs__item--home_icon {
  background-color: #ffffff;
  color: #3A2E94;
  cursor: pointer;
  text-decoration: none; }
  .editorial-navigation .breadcrumbs__item--home_icon svg {
    fill: #3A2E94; }
  .editorial-navigation .breadcrumbs__item--home_icon:visited {
    background-color: #ffffff;
    color: #3A2E94;
    text-decoration: none; }
  .editorial-navigation .breadcrumbs__item--home_icon:hover, .editorial-navigation .breadcrumbs__item--home_icon:active {
    background-color: #ffc600;
    color: #222222;
    text-decoration: none; }
    .editorial-navigation .breadcrumbs__item--home_icon:hover svg, .editorial-navigation .breadcrumbs__item--home_icon:active svg {
      fill: #222222; }

.link-tree__item a {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 21px;
  line-height: 2.1rem; }

.editorial-navigation .breadcrumbs__item:nth-child(2) {
  background-color: #3A2E94;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none; }
  .editorial-navigation .breadcrumbs__item:visited:nth-child(2) {
    background-color: #3A2E94;
    color: #ffffff;
    text-decoration: none; }
  .editorial-navigation .breadcrumbs__item:hover:nth-child(2), .editorial-navigation .breadcrumbs__item:active:nth-child(2) {
    background-color: #ffc600;
    color: #222222;
    text-decoration: none; }

.open .contextual-menu li, .editorial-navigation .breadcrumbs__item:nth-child(3) {
  background-color: #9d97ca;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none; }
  .open .contextual-menu li:visited, .editorial-navigation .breadcrumbs__item:visited:nth-child(3) {
    background-color: #9d97ca;
    color: #ffffff;
    text-decoration: none; }
  .open .contextual-menu li:hover, .editorial-navigation .breadcrumbs__item:hover:nth-child(3), .open .contextual-menu li:active, .editorial-navigation .breadcrumbs__item:active:nth-child(3) {
    background-color: #ffc600;
    color: #222222;
    text-decoration: none; }

.slab__nav {
  text-align: left;
  height: auto; }

.slab__nav-list {
  border-bottom-width: 0;
  border-bottom-style: solid;
  border-bottom-color: #e9e9e9; }

.slab__nav-listitem {
  background-color: transparent;
  width: auto;
  padding: 0.3rem 0.3rem 0.3rem 0.3rem; }
  @media screen and (min-width: 990px) {
    .slab__nav-listitem {
      width: auto; } }

.slab__title {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 32px;
  line-height: 3.2rem;
  color: #3A2E94;
  font-weight: 700; }

.slab__title-link {
  line-height: 32px;
  line-height: 3.2rem;
  vertical-align: baseline;
  text-transform: uppercase; }

.search-result-item__link {
  background-color: transparent;
  color: #000000;
  cursor: pointer;
  text-decoration: none; }
  .search-result-item__link:visited {
    background-color: transparent;
    color: #000000;
    text-decoration: none; }
  .search-result-item__link:hover, .search-result-item__link:active {
    background-color: transparent;
    color: #000000;
    text-decoration: none; }

.janrain-modal .capture_btn {
  font-family: "montserratlight", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 40px;
  line-height: 4rem;
  height: 40px;
  height: 4rem; }

.janrain-profile__account-actions__a, .janrain-profile__link-account .capture_linkAccount a, .janrain-profile__account-actions a {
  border-left: 3px solid #3A2E94;
  border-bottom: 1px solid #e9e9e9;
  background-color: transparent;
  color: #222222;
  cursor: pointer;
  text-decoration: none; }
  .janrain-profile__account-actions__a:hover, .janrain-profile__link-account .capture_linkAccount a:hover, .janrain-profile__account-actions a:hover {
    border-left: 3px solid #756db4; }
  .janrain-profile__account-actions__a:visited, .janrain-profile__link-account .capture_linkAccount a:visited, .janrain-profile__account-actions a:visited {
    background-color: transparent;
    color: #222222;
    text-decoration: none; }
  .janrain-profile__account-actions__a:hover, .janrain-profile__link-account .capture_linkAccount a:hover, .janrain-profile__account-actions a:hover, .janrain-profile__account-actions__a:active, .janrain-profile__link-account .capture_linkAccount a:active, .janrain-profile__account-actions a:active {
    background-color: #3A2E94;
    color: #ffffff;
    text-decoration: none; }

.janrain-modal .capture_checkbox {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  background-color: #ebeaf4; }

.janrain-aside {
  background-color: #e9e9e9;
  color: #222222;
  cursor: pointer;
  text-decoration: none; }
  .janrain-aside:visited {
    background-color: #e9e9e9;
    color: #222222;
    text-decoration: none; }
  .janrain-aside:hover, .janrain-aside:active {
    background-color: #e9e9e9;
    color: #222222;
    text-decoration: none; }

.slab.slab--commercial .site-search__search-btn {
  background-color: #ffc600;
  color: #222222;
  cursor: pointer;
  text-decoration: none; }
  .slab.slab--commercial .site-search__search-btn:visited {
    background-color: #ffc600;
    color: #222222;
    text-decoration: none; }
  .slab.slab--commercial .site-search__search-btn:hover, .slab.slab--commercial .site-search__search-btn:active {
    background-color: #3A2E94;
    color: #ffffff;
    text-decoration: none; }

.slab.slab--commercial .site-search__inner {
  background-color: #ffffff;
  box-shadow: 0 8px 6px -6px #EEEEEC; }

.slab.slab--commercial .site-search__inner.slide-in-top .site-search__input-search {
  background-color: #EEEEEC;
  color: #222222; }

.editorial-navigation-morecontainer {
  background-color: #ffc600;
  color: #222222;
  cursor: pointer;
  outline: 0; }
  .editorial-navigation-morecontainer svg {
    fill: #222222; }
  .editorial-navigation-morecontainer:hover {
    background-color: #ffc600;
    color: #222222; }
    .editorial-navigation-morecontainer:hover svg {
      fill: #222222; }
  .touchevents .editorial-navigation-morecontainer:hover {
    background-color: #ffc600;
    color: #222222; }
    .touchevents .editorial-navigation-morecontainer:hover svg {
      fill: #222222; }
  .open .editorial-navigation-morecontainer {
    background-color: #ffc600;
    color: #222222; }
    .open .editorial-navigation-morecontainer svg {
      fill: #222222; }
  .touchevents .open .editorial-navigation-morecontainer:hover {
    background-color: #ffc600;
    color: #222222; }
    .touchevents .open .editorial-navigation-morecontainer:hover svg {
      fill: #222222; }

.janrain-aside {
  background-color: #e9e9e9;
  color: #222222;
  cursor: pointer;
  text-decoration: none; }
  .janrain-aside:visited {
    background-color: #e9e9e9;
    color: #222222;
    text-decoration: none; }
  .janrain-aside:hover, .janrain-aside:active {
    background-color: #e9e9e9;
    color: #222222;
    text-decoration: none; }

.editorial-navigation {
  font-family: "jaf-bernina-sans-condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 32px;
  line-height: 3.2rem;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #ffffff; }
  .editorial-navigation .nav-commercial__list-item a {
    padding: 0 1rem; }
  @media screen and (min-width: 640px) {
    .editorial-navigation .editorial-navigation-morecontainer {
      padding-right: 0; } }

.editorial-navigation-morecontainer__more {
  font-family: "jaf-bernina-sans-condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 32px;
  line-height: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 0; }

.link-tree__item a {
  font-family: "jaf-bernina-sans-condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 21px;
  line-height: 2.1rem; }

@media screen and (min-width: 960px) {
  .slab--legal {
    text-align: center; } }

.slab.slab--commercial nav .nav-commercial__list-item a, .user-account, .user-account__sign-in-link a, .slab.slab--commercial .site-search__toggle-btn {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem; }

.user-account__list-item--user-name {
  color: #222222;
  font-weight: 700; }

.svg-masthead__yep--text {
  max-height: 40px;
  max-height: 4rem; }
  @media screen and (min-width: 640px) {
    .svg-masthead__yep--text {
      max-height: 40px;
      max-height: 4rem; } }
  @media screen and (min-width: 960px) {
    .svg-masthead__yep--text {
      max-height: 50px;
      max-height: 5rem; } }
  @media screen and (min-width: 960px) {
    .svg-masthead__yep--text {
      max-height: 60px;
      max-height: 6rem; } }

.janrain-modal .capture_btn {
  text-transform: uppercase;
  font-weight: 700; }

.editorial-navigation-morecontainer .editorial-navigation-morecontainer__arrow {
  width: 3.2rem;
  height: 3.2rem; }

@media screen and (min-width: 1300px) {
  .editorial-lead-teaser--splash-large[min-width~="620px"] .teaser__comment-count {
    right: 16px;
    bottom: 16px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1; }
  .editorial-lead-teaser--splash-large[min-width~="620px"] .editorial-lead-teaser__extra {
    left: 16px;
    bottom: 16px; }
    .editorial-lead-teaser--splash-large[min-width~="620px"] .editorial-lead-teaser__extra a {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.4;
      padding: 0; } }

.trending-stories__title {
  font-size: 22px;
  font-size: 2.2rem; }

.pluck-app .pluck-confirm-dialog span.pluck-confirm-cancel-btn a {
  width: 8.5rem !important; }

.slab--masthead .slab__inner {
  width: 100%; }
  @media screen and (min-width: 640px) {
    .slab--masthead .slab__inner {
      width: 100%; } }
  @media screen and (min-width: 960px) {
    .slab--masthead .slab__inner {
      width: 100%; } }
  .slab--masthead .slab__inner svg {
    margin: 0 auto; }

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  	/*
  	@media 
  		only screen and (-webkit-min-device-pixel-ratio: 1.25),
  		only screen and ( min-device-pixel-ratio: 1.25),
  		only screen and ( min-resolution: 200dpi),
  		only screen and ( min-resolution: 1.25dppx) {
      		-webkit-font-smoothing: subpixel-antialiased;
  	}*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 10px; }

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 16px;
  background-color: #F9F9F7; }

body,
body *,
body *:before,
body *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

@font-face {
  font-family: 'montserratregular';
  src: url("../fonts/montserrat-regular.eot");
  src: url("../fonts/montserrat-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-regular.woff2") format("woff2"), url("../fonts/montserrat-regular.woff") format("woff"), url("../fonts/montserrat-regular.ttf") format("truetype"), url("../fonts/montserrat-regular.svg#montserratregular") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'montserratlight';
  src: url("../fonts/montserrat-light.eot");
  src: url("../fonts/montserrat-light.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-light.woff2") format("woff2"), url("../fonts/montserrat-light.woff") format("woff"), url("../fonts/montserrat-light.ttf") format("truetype"), url("../fonts/montserrat-light.svg#montserratlight") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'montserrathairline';
  src: url("../fonts/montserrat-hairline.eot");
  src: url("../fonts/montserrat-hairline.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-hairline.woff2") format("woff2"), url("../fonts/montserrat-hairline.woff") format("woff"), url("../fonts/montserrat-hairline.ttf") format("truetype"), url("../fonts/montserrat-hairline.svg#montserrathairline") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'montserratbold';
  src: url("../fonts/montserrat-bold.eot");
  src: url("../fonts/montserrat-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-bold.woff2") format("woff2"), url("../fonts/montserrat-bold.woff") format("woff"), url("../fonts/montserrat-bold.ttf") format("truetype"), url("../fonts/montserrat-bold.svg#montserratbold") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'montserratblack';
  src: url("../fonts/montserrat-black.eot");
  src: url("../fonts/montserrat-black.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-black.woff2") format("woff2"), url("../fonts/montserrat-black.woff") format("woff"), url("../fonts/montserrat-black.ttf") format("truetype"), url("../fonts/montserrat-black.svg#montserratblack") format("svg");
  font-weight: normal;
  font-style: normal; }
.wf-loading h1,
.wf-loading h2,
.wf-loading h3,
.wf-loading a,
.wf-loading p {
  opacity: 0;
  visibility: hidden; }

.wf-active h1,
.wf-active h2,
.wf-active h3,
.wf-active a,
.wf-active p {
  opacity: 1;
  visibility: visible; }

.js-query {
  opacity: 0;
  visibility: hidden; }

.ellipsis {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0; }

@media screen and (min-width: 320px) {
  .hidden-xxs {
    display: none; } }

@media screen and (min-width: 320px) {
  .visible-xxs {
    display: block; } }

@media screen and (min-width: 640px) {
  .hidden-sm {
    display: none; } }

@media screen and (min-width: 640px) {
  .visible-sm {
    display: block; } }

@media screen and (min-width: 960px) {
  .hidden-md {
    display: none; } }

@media screen and (min-width: 960px) {
  .visible-md {
    display: block; } }

@media screen and (min-width: 1300px) {
  .hidden-lg {
    display: none; } }

@media screen and (min-width: 1300px) {
  .visible-lg {
    display: block; } }

@media screen and (min-width: 640px) {
  .leaderboard.hidden-sm {
    display: block; } }
@media screen and (min-width: 768px) {
  .leaderboard.hidden-sm {
    display: none; } }
@media screen and (min-width: 640px) {
  .leaderboard.visible-sm {
    display: none; } }
@media screen and (min-width: 768px) {
  .leaderboard.visible-sm {
    display: block; } }

.adGPTTag {
  width: 100%;
  margin: 0 auto 20px;
  text-align: center; }

.ie8 .adGPTTag {
  display: none; }

.adGPTTag.OOP,
.adGPTTag[data-size="2x2"] {
  margin: 0 auto; }

@media screen and (min-width: 640px) {
  aside .adGPTTag {
    max-width: none; } }

.slab--lifestyle .ad-gpt {
  background-color: #f4f4f4;
  background-clip: border-box; }
  .slab--lifestyle .ad-gpt > div {
    background-color: #f4f4f4; }

.slab--lifestyle .ad-gpt {
  max-height: 296px; }
  .slab--lifestyle .ad-gpt > div {
    margin: 23px auto; }
    @media screen and (min-width: 960px) {
      .slab--lifestyle .ad-gpt > div {
        margin: 0 auto; } }

.ad-gpt {
  float: left;
  width: 100%; }
  @media screen and (min-width: 640px) {
    .ad-gpt {
      padding-top: 0;
      height: 100%; } }
  .ad-gpt > div {
    position: relative;
    width: 300px;
    overflow: hidden;
    margin: 0 auto; }

.slab .DMPU {
  margin-bottom: 0px; }
.slab .ad-gpt {
  margin: 0 auto 20px; }

.adGPTTag.adTagReady[data-size="2x2"] {
  display: none; }

.slab {
  margin-top: 20px;
  margin-bottom: 20px; }
  .slab__inner {
    margin: 0 auto;
    position: relative;
    overflow: hidden; }
    .slab__inner:before, .slab__inner:after {
      content: " ";
      display: table; }
    .slab__inner:after {
      clear: both; }
  .slab__block {
    float: left;
    margin-bottom: 10px;
    overflow: hidden; }
    @media (min-width: 640px) {
      .slab__block {
        max-height: 296px;
        margin-bottom: 20px; } }
    .slab__block > div + div,
    .slab__block > div + ul,
    .slab__block > div + blockquote,
    .slab__block > div + ol,
    .slab__block > ul + div,
    .slab__block > ul + blockquote {
      margin-top: 10px; }
      @media (min-width: 640px) {
        .slab__block > div + div,
        .slab__block > div + ul,
        .slab__block > div + blockquote,
        .slab__block > div + ol,
        .slab__block > ul + div,
        .slab__block > ul + blockquote {
          margin-top: 20px; } }
  .slab__nav {
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 26px;
    line-height: 2.6rem;
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden; }
    @media screen and (min-width: 320px) {
      .slab__nav {
        padding-left: 10px;
        padding-right: 10px;
        width: 100%; } }
    @media (min-width: 1300px) {
      .slab__nav {
        padding: 0; } }
  .slab__nav-list {
    height: 100%;
    box-sizing: border-box; }
    .slab__nav-list:before, .slab__nav-list:after {
      content: " ";
      display: table; }
    .slab__nav-list:after {
      clear: both; }
  .slab__nav-listitem {
    height: 100%;
    display: block;
    float: left;
    margin: 0; }
  .slab__title {
    /* @include complementary-font(1.8, 2.4);
    color: $white;
    font-weight: 500; */ }
  .slab__inner .slab__nav {
    padding: 0 1rem; }

.slab--primary-navigation {
  margin: 0rem;
  padding: 0rem; }
  .slab--primary-navigation .slab__block {
    margin-bottom: 0px; }

.slab--primary-navigation {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 32px;
  line-height: 3.2rem;
  margin-top: 0;
  margin-bottom: 0; }
  .slab--primary-navigation .slab__inner:before {
    height: auto; }
  @media screen and (min-width: 768px) {
    .slab--primary-navigation .slab__inner {
      padding-left: 10px;
      padding-right: 10px; } }

.contextual-menu {
  height: 3.2rem; }
  .contextual-menu li {
    display: inline-block; }
  .contextual-menu.homepage li a {
   /* &.subject-theme1:hover {
        background-color: $subject-theme1-hover;
    }
*/
    /*&.subject-theme2:hover {
        background-color: $subject-theme2-hover;
    }
    */
    /*&.subject-theme3:hover {
        background-color: $subject-theme3-hover;
    }*/
    /*&.subject-theme4:hover {
        background-color: $subject-theme4-hover;
    }*/ }
    .contextual-menu.homepage li a.subject-theme1 {
      background-color: #3A2E94;
      color: #ffffff;
      cursor: pointer;
      text-decoration: none; }
      .contextual-menu.homepage li a.subject-theme1:visited {
        background-color: #3A2E94;
        color: #ffffff;
        text-decoration: none; }
      .contextual-menu.homepage li a.subject-theme1:hover, .contextual-menu.homepage li a.subject-theme1:active {
        background-color: #ffc600;
        color: #222222;
        text-decoration: none; }
    .contextual-menu.homepage li a.subject-theme2 {
      background-color: #3A2E94;
      color: #ffffff;
      cursor: pointer;
      text-decoration: none; }
      .contextual-menu.homepage li a.subject-theme2:visited {
        background-color: #3A2E94;
        color: #ffffff;
        text-decoration: none; }
      .contextual-menu.homepage li a.subject-theme2:hover, .contextual-menu.homepage li a.subject-theme2:active {
        background-color: #ffc600;
        color: #222222;
        text-decoration: none; }
    .contextual-menu.homepage li a.subject-theme3 {
      background-color: #3A2E94;
      color: #ffffff;
      cursor: pointer;
      text-decoration: none; }
      .contextual-menu.homepage li a.subject-theme3:visited {
        background-color: #3A2E94;
        color: #ffffff;
        text-decoration: none; }
      .contextual-menu.homepage li a.subject-theme3:hover, .contextual-menu.homepage li a.subject-theme3:active {
        background-color: #ffc600;
        color: #222222;
        text-decoration: none; }
    .contextual-menu.homepage li a.subject-theme4 {
      background-color: #3A2E94;
      color: #ffffff;
      cursor: pointer;
      text-decoration: none; }
      .contextual-menu.homepage li a.subject-theme4:visited {
        background-color: #3A2E94;
        color: #ffffff;
        text-decoration: none; }
      .contextual-menu.homepage li a.subject-theme4:hover, .contextual-menu.homepage li a.subject-theme4:active {
        background-color: #ffc600;
        color: #222222;
        text-decoration: none; }
  .open .contextual-menu {
    height: auto;
    clear: both;
    background-color: #9d97ca;
    display: block;
    vertical-align: top; }
    .open .contextual-menu:after {
      clear: both;
      content: '';
      display: block; }
    .open .contextual-menu li {
      width: 50%;
      float: left;
      box-sizing: border-box; }
      @media screen and (min-width: 640px) {
        .open .contextual-menu li {
          width: 33%; } }
      @media screen and (min-width: 960px) {
        .open .contextual-menu li {
          width: 25%; } }
      .open .contextual-menu li a {
        display: block;
        padding: 0 1rem;
     /* &.subject-theme1:hover {
          background-color: $subject-theme1-hover;
      }
  */
        /*&.subject-theme2:hover {
            background-color: $subject-theme2-hover;
        }
        */
        /*&.subject-theme3:hover {
            background-color: $subject-theme3-hover;
        }*/
        /*&.subject-theme4:hover {
            background-color: $subject-theme4-hover;
        }*/ }
        .open .contextual-menu li a.subject-theme1 {
          background-color: #3A2E94;
          color: #ffffff;
          cursor: pointer;
          text-decoration: none; }
          .open .contextual-menu li a.subject-theme1:visited {
            background-color: #3A2E94;
            color: #ffffff;
            text-decoration: none; }
          .open .contextual-menu li a.subject-theme1:hover, .open .contextual-menu li a.subject-theme1:active {
            background-color: #ffc600;
            color: #222222;
            text-decoration: none; }
        .open .contextual-menu li a.subject-theme2 {
          background-color: #3A2E94;
          color: #ffffff;
          cursor: pointer;
          text-decoration: none; }
          .open .contextual-menu li a.subject-theme2:visited {
            background-color: #3A2E94;
            color: #ffffff;
            text-decoration: none; }
          .open .contextual-menu li a.subject-theme2:hover, .open .contextual-menu li a.subject-theme2:active {
            background-color: #ffc600;
            color: #222222;
            text-decoration: none; }
        .open .contextual-menu li a.subject-theme3 {
          background-color: #3A2E94;
          color: #ffffff;
          cursor: pointer;
          text-decoration: none; }
          .open .contextual-menu li a.subject-theme3:visited {
            background-color: #3A2E94;
            color: #ffffff;
            text-decoration: none; }
          .open .contextual-menu li a.subject-theme3:hover, .open .contextual-menu li a.subject-theme3:active {
            background-color: #ffc600;
            color: #222222;
            text-decoration: none; }
        .open .contextual-menu li a.subject-theme4 {
          background-color: #3A2E94;
          color: #ffffff;
          cursor: pointer;
          text-decoration: none; }
          .open .contextual-menu li a.subject-theme4:visited {
            background-color: #3A2E94;
            color: #ffffff;
            text-decoration: none; }
          .open .contextual-menu li a.subject-theme4:hover, .open .contextual-menu li a.subject-theme4:active {
            background-color: #ffc600;
            color: #222222;
            text-decoration: none; }
    .open .contextual-menu.homepage {
      display: none; }

header .slab__inner {
  margin: 0 auto; }

.editorial-navigation {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 3.2rem;
  clear: both;
  display: block;
  float: left; }
  .editorial-navigation ul,
  .editorial-navigation ol,
  .editorial-navigation li {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline; }
  .editorial-navigation ul,
  .editorial-navigation ol {
    list-style: none; }
  .editorial-navigation a {
    text-decoration: none;
    color: inherit; }
  .editorial-navigation.open {
    height: auto; }
  .editorial-navigation__list {
    display: -webkit-box;
    max-height: 3.2rem; }
  .editorial-navigation a {
    display: table-cell;
    font-size: inherit;
    padding: 0 1.5rem;
    text-decoration: none;
    line-height: inherit; }
  .editorial-navigation__listitem {
    float: left; }
    .editorial-navigation__listitem a {
      display: table-cell;
      font-size: inherit;
      padding: 0 1.5rem;
      text-decoration: none;
      line-height: inherit; }
  .editorial-navigation-morecontainer {
    cursor: pointer;
    font-size: inherit;
    height: 3.2rem;
    line-height: inherit;
    padding: 0 1rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100; }
    .editorial-navigation-morecontainer svg {
      float: right;
      height: 3.2rem;
      width: 2.4rem; }
    @media screen and (max-width: 767px) {
      .editorial-navigation-morecontainer__more {
        display: none; } }
    @media screen and (min-width: 640px) {
      .editorial-navigation-morecontainer {
        width: 9.0rem; }
        .editorial-navigation-morecontainer__hamburger {
          display: none; }
        .editorial-navigation-morecontainer__more {
          display: block; }
          .editorial-navigation-morecontainer__more--more {
            display: block;
            float: left; }
          .editorial-navigation-morecontainer__more--close {
            display: none;
            float: left; }
          .editorial-navigation-morecontainer__more.open .editorial-navigation-morecontainer__more--more {
            display: none; }
          .editorial-navigation-morecontainer__more.open .editorial-navigation-morecontainer__more--close {
            display: block; }
          .editorial-navigation-morecontainer__more.open .editorial-navigation-morecontainer__arrow {
            transform: rotate(180deg); } }

.editorial-navigation .breadcrumbs {
  padding: 0;
  height: 3.2rem;
  float: left;
  width: auto;
  overflow: hidden; }
  .editorial-navigation .breadcrumbs:before, .editorial-navigation .breadcrumbs:after {
    content: " ";
    display: table; }
  .editorial-navigation .breadcrumbs:after {
    clear: both; }
  .editorial-navigation .breadcrumbs__item {
    max-height: 3.2rem;
    height: 3.2rem;
    display: inline;
    float: left; }
    .editorial-navigation .breadcrumbs__item--home {
      display: inline;
      float: left;
      max-height: 3.2rem; }
    .editorial-navigation .breadcrumbs__item--home_icon {
      height: 3.2rem;
      padding: 0.5rem 1rem;
      max-height: 3.2rem;
      line-height: 2.1rem; }
      .editorial-navigation .breadcrumbs__item--home_icon svg {
        width: 2rem;
        line-height: inherit;
        vertical-align: 0; }

.ie9 .site-search__text {
  padding-right: 0;
  border-right: 22px solid transparent; }

.site-search__fieldset {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0; }
.site-search__text {
  -webkit-appearance: none;
  border-radius: 0; }
.site-search__watermark {
  background: url("https://www.google.com/cse/intl/en/images/google_custom_search_watermark.gif") 24% 50% no-repeat white;
  background-size: 80%; }
.site-search__submit {
  border: 0;
  float: right;
  width: 2.8rem;
  height: 2.8rem;
  background: #ffffff;
  margin: 0.3rem 1rem 0.3rem 0;
  padding: 0 0.3rem 0 0.3rem; }
  .site-search__submit--icon {
    width: 2.2rem;
    height: 2.2rem; }

/* autocomplete force wrap*/
.touch .gssb_a, .touch .gssb_a td {
  white-space: normal !important; }

.ie9 .gssb_a, .ie9 .gssb_a td {
  white-space: normal !important; }

.slab--leaderboard,
.slab--bottommobilebanner {
  margin-top: 0;
  margin-bottom: 0;
  background-color: #f4f4f4; }
  .slab--leaderboard .slab__inner,
  .slab--bottommobilebanner .slab__inner {
    background-color: transparent;
    width: 100%;
    max-width: 100%; }
  .slab--leaderboard .slab__block,
  .slab--bottommobilebanner .slab__block {
    padding: 0;
    margin-bottom: 0;
    float: none; }
    @media screen and (min-width: 340px) {
      .slab--leaderboard .slab__block,
      .slab--bottommobilebanner .slab__block {
        padding-left: 10px;
        padding-right: 10px; } }
  .slab--leaderboard .ad-gpt,
  .slab--bottommobilebanner .ad-gpt {
    background-color: transparent;
    margin: 0 auto; }
    .slab--leaderboard .ad-gpt > div,
    .slab--bottommobilebanner .ad-gpt > div {
      background-color: transparent;
      width: auto;
      height: auto;
      margin: 0; }
      .slab--leaderboard .ad-gpt > div > div,
      .slab--bottommobilebanner .ad-gpt > div > div {
        margin: 0 auto; }

.sticky--leaderboard {
  cursor: auto;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  width: 100%;
  display: block;
  z-index: 1001;
  backface-visibility: hidden;
  background-color: rgba(34, 34, 34, 0.7) !important;
  max-width: 100% !important; }

.slab--bottommobilebanner {
  margin-bottom: 10px; }
  @media screen and (min-width: 640px) {
    .slab--bottommobilebanner {
      display: none; } }

.ad-container {
  min-height: 0;
  margin-top: 0;
  position: relative;
  margin: auto;
  background-color: whitesmoke; }
  .ad-container:before, .ad-container:after {
    content: " ";
    display: table; }
  .ad-container:after {
    clear: both; }
  @media screen and (min-width: 320px) {
    .ad-container {
      width: 100%;
      border-bottom: solid 1rem #ffffff; } }
  @media screen and (min-width: 481px) {
    .ad-container {
      border-bottom: solid 2rem #ffffff; } }
  @media screen and (min-width: 1300px) {
    .ad-container {
      width: 1280px;
      padding-left: 0;
      padding-right: 0; } }

.adGPTTag[data-size="2x2"] {
  min-width: 2px;
  min-height: 2px;
  margin-bottom: 0; }
  .adGPTTag[data-size="2x2"] > div {
    height: auto; }

.adGPTTag[data-size="3x3"] {
  min-width: 3px;
  min-height: 3px; }
  .adGPTTag[data-size="3x3"] > div {
    height: auto;
    width: auto; }

.adGPTTag[data-size="2x1"] {
  min-width: 2px;
  min-height: 1px;
  margin-bottom: 0; }
  .adGPTTag[data-size="2x1"] > div {
    height: auto; }
  .adGPTTag[data-size="2x1"] iframe:nth-child(1) {
    float: left; }

@media screen and (min-width: 320px) {
  .adGPTTag.adTagReady[data-adtag-type="leaderboard"] {
    padding-top: 10px;
    padding-bottom: 10px; } }
@media screen and (min-width: 481px) {
  .adGPTTag.adTagReady[data-adtag-type="leaderboard"] {
    padding-top: 2rem;
    padding-bottom: 2rem; } }

.link-tree {
  display: none;
  overflow: hidden; }
  .link-tree__item a {
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem 0.6rem;
    display: inline-block;
    width: 100%;
   /* &.subject-theme1:hover {
        background-color: $subject-theme1-hover;
    }
*/
    /*&.subject-theme2:hover {
        background-color: $subject-theme2-hover;
    }
    */
    /*&.subject-theme3:hover {
        background-color: $subject-theme3-hover;
    }*/
    /*&.subject-theme4:hover {
        background-color: $subject-theme4-hover;
    }*/
    vertical-align: top; }
    .link-tree__item a.subject-theme1 {
      background-color: #3A2E94;
      color: #ffffff;
      cursor: pointer;
      text-decoration: none; }
      .link-tree__item a.subject-theme1:visited {
        background-color: #3A2E94;
        color: #ffffff;
        text-decoration: none; }
      .link-tree__item a.subject-theme1:hover, .link-tree__item a.subject-theme1:active {
        background-color: #ffc600;
        color: #222222;
        text-decoration: none; }
    .link-tree__item a.subject-theme2 {
      background-color: #3A2E94;
      color: #ffffff;
      cursor: pointer;
      text-decoration: none; }
      .link-tree__item a.subject-theme2:visited {
        background-color: #3A2E94;
        color: #ffffff;
        text-decoration: none; }
      .link-tree__item a.subject-theme2:hover, .link-tree__item a.subject-theme2:active {
        background-color: #ffc600;
        color: #222222;
        text-decoration: none; }
    .link-tree__item a.subject-theme3 {
      background-color: #3A2E94;
      color: #ffffff;
      cursor: pointer;
      text-decoration: none; }
      .link-tree__item a.subject-theme3:visited {
        background-color: #3A2E94;
        color: #ffffff;
        text-decoration: none; }
      .link-tree__item a.subject-theme3:hover, .link-tree__item a.subject-theme3:active {
        background-color: #ffc600;
        color: #222222;
        text-decoration: none; }
    .link-tree__item a.subject-theme4 {
      background-color: #3A2E94;
      color: #ffffff;
      cursor: pointer;
      text-decoration: none; }
      .link-tree__item a.subject-theme4:visited {
        background-color: #3A2E94;
        color: #ffffff;
        text-decoration: none; }
      .link-tree__item a.subject-theme4:hover, .link-tree__item a.subject-theme4:active {
        background-color: #ffc600;
        color: #222222;
        text-decoration: none; }
  .link-tree__item a:active {
    background: #222222;
    color: #fff; }
  .link-tree__item--home {
    padding: 0 .5rem 0 .5rem;
    max-height: 3.5rem; }
    .link-tree__item--home svg {
      width: 3.2rem;
      height: 2.8rem;
      fill: #fff;
      vertical-align: text-bottom; }
  .link-tree-secondary {
    background: #e9e9e9;
    overflow: hidden;
    display: none; }
    .link-tree-secondary__item {
      width: 50%;
      float: left;
      box-sizing: border-box; }
      @media screen and (min-width: 320px) {
        .link-tree-secondary__item:nth-child(2n + 1) {
          clear: left; } }
      @media screen and (min-width: 640px) {
        .link-tree-secondary__item {
          width: 33%; }
          .link-tree-secondary__item:nth-child(2n + 1) {
            clear: none; }
          .link-tree-secondary__item:nth-child(3n + 1) {
            clear: left; } }
      @media screen and (min-width: 960px) {
        .link-tree-secondary__item {
          width: 25%; }
          .link-tree-secondary__item:nth-child(2n + 1) {
            clear: none; }
          .link-tree-secondary__item:nth-child(3n + 1) {
            clear: none; }
          .link-tree-secondary__item:nth-child(4n + 1) {
            clear: left; } }
  .link-tree-tertiary {
    display: none; }

.editorial-navigation.open .link-tree {
  height: auto;
  display: block;
  width: 100%; }
  .editorial-navigation.open .link-tree-secondary {
    display: block; }
    .editorial-navigation.open .link-tree-secondary__item {
      float: left; }
      .editorial-navigation.open .link-tree-secondary__item a {
        display: block;
        padding-bottom: .5rem; }
  .editorial-navigation.open .link-tree__section-title {
    display: block;
    background: #222222; }
    .editorial-navigation.open .link-tree__section-title > a {
   /* &.subject-theme1:hover {
        background-color: $subject-theme1-hover;
    }
*/
      /*&.subject-theme2:hover {
          background-color: $subject-theme2-hover;
      }
      */
      /*&.subject-theme3:hover {
          background-color: $subject-theme3-hover;
      }*/
      /*&.subject-theme4:hover {
          background-color: $subject-theme4-hover;
      }*/ }
      .editorial-navigation.open .link-tree__section-title > a.subject-theme1 {
        background-color: #3A2E94;
        color: #ffffff;
        cursor: pointer;
        text-decoration: none; }
        .editorial-navigation.open .link-tree__section-title > a.subject-theme1:visited {
          background-color: #3A2E94;
          color: #ffffff;
          text-decoration: none; }
        .editorial-navigation.open .link-tree__section-title > a.subject-theme1:hover, .editorial-navigation.open .link-tree__section-title > a.subject-theme1:active {
          background-color: #ffc600;
          color: #222222;
          text-decoration: none; }
      .editorial-navigation.open .link-tree__section-title > a.subject-theme2 {
        background-color: #3A2E94;
        color: #ffffff;
        cursor: pointer;
        text-decoration: none; }
        .editorial-navigation.open .link-tree__section-title > a.subject-theme2:visited {
          background-color: #3A2E94;
          color: #ffffff;
          text-decoration: none; }
        .editorial-navigation.open .link-tree__section-title > a.subject-theme2:hover, .editorial-navigation.open .link-tree__section-title > a.subject-theme2:active {
          background-color: #ffc600;
          color: #222222;
          text-decoration: none; }
      .editorial-navigation.open .link-tree__section-title > a.subject-theme3 {
        background-color: #3A2E94;
        color: #ffffff;
        cursor: pointer;
        text-decoration: none; }
        .editorial-navigation.open .link-tree__section-title > a.subject-theme3:visited {
          background-color: #3A2E94;
          color: #ffffff;
          text-decoration: none; }
        .editorial-navigation.open .link-tree__section-title > a.subject-theme3:hover, .editorial-navigation.open .link-tree__section-title > a.subject-theme3:active {
          background-color: #ffc600;
          color: #222222;
          text-decoration: none; }
      .editorial-navigation.open .link-tree__section-title > a.subject-theme4 {
        background-color: #3A2E94;
        color: #ffffff;
        cursor: pointer;
        text-decoration: none; }
        .editorial-navigation.open .link-tree__section-title > a.subject-theme4:visited {
          background-color: #3A2E94;
          color: #ffffff;
          text-decoration: none; }
        .editorial-navigation.open .link-tree__section-title > a.subject-theme4:hover, .editorial-navigation.open .link-tree__section-title > a.subject-theme4:active {
          background-color: #ffc600;
          color: #222222;
          text-decoration: none; }
  .editorial-navigation.open .link-tree .active-navigation-item {
    display: none; }

.slab--masthead {
  cursor: auto;
  margin-top: 0;
  margin-bottom: 0; }
  .slab--masthead .slab__inner {
    margin: auto; }
    .slab--masthead .slab__inner svg {
      display: block; }

.svg-masthead-scotsman {
  max-height: 91px; }
  .svg-masthead-scotsman__crest {
    fill: transparent; }
    @media screen and (min-width: 640px) {
      .svg-masthead-scotsman__crest {
        fill: #ffffff; } }
  .svg-masthead-scotsman__strapline {
    fill: transparent; }
    @media screen and (min-width: 640px) {
      .svg-masthead-scotsman__strapline {
        fill: #808080; } }

.slab.slab--commercial {
  cursor: auto;
  margin-top: 0;
  margin-bottom: 0; }
  .slab.slab--commercial .slab__inner {
    margin: 0 auto;
    background: inherit;
    position: static;
    overflow: visible; }
  .slab.slab--commercial nav {
    display: block; }
    .slab.slab--commercial nav ul,
    .slab.slab--commercial nav ol,
    .slab.slab--commercial nav li {
      margin: 0;
      padding: 0;
      border: 0;
      font: inherit;
      vertical-align: baseline; }
    .slab.slab--commercial nav ul,
    .slab.slab--commercial nav ol {
      list-style: none; }
    .slab.slab--commercial nav a {
      text-decoration: none;
      color: inherit; }
    @media screen and (min-width: 960px) {
      .slab.slab--commercial nav {
        display: block; } }
    .slab.slab--commercial nav .nav-commercial__list:before, .slab.slab--commercial nav .nav-commercial__list:after {
      content: " ";
      display: table; }
    .slab.slab--commercial nav .nav-commercial__list:after {
      clear: both; }
    .slab.slab--commercial nav .nav-commercial__list-item {
      display: block;
      float: left; }
      .slab.slab--commercial nav .nav-commercial__list-item a {
        outline: 0;
        display: block; }
      .slab.slab--commercial nav .nav-commercial__list-item:nth-child(4), .slab.slab--commercial nav .nav-commercial__list-item:nth-child(5) {
        display: none; }
        @media screen and (min-width: 960px) {
          .slab.slab--commercial nav .nav-commercial__list-item:nth-child(4), .slab.slab--commercial nav .nav-commercial__list-item:nth-child(5) {
            display: block; } }

.user-account {
  position: relative;
  float: right; }
  .user-account__sign-in-link {
    display: block;
    white-space: nowrap;
    padding: 0;
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden; }
    .user-account__sign-in-link a {
      text-decoration: none;
      display: block; }
  .user-account__profile {
    display: none; }
  .user-account__list {
    -webkit-transform: translateY(-1.5rem);
    -moz-transform: translateY(-1.5rem);
    -ms-transform: translateY(-1.5rem);
    -o-transform: translateY(-1.5rem);
    transform: translateY(-1.5rem);
    -webkit-transform: translate3d(0, -1.5rem, 0);
    -moz-transform: translate3d(0, -1.5rem, 0);
    -ms-transform: translate3d(0, -1.5rem, 0);
    -o-transform: translate3d(0, -1.5rem, 0);
    transform: translate3d(0, -1.5rem, 0);
    display: none;
    height: auto;
    position: absolute;
    z-index: 1000;
    top: 3rem;
    left: 0;
    width: 320px;
    transition: transform 0.08s, cubic-bezier(0.865, 0.02, 0.13, 1.02), opacity 0.08s, cubic-bezier(0, 1.07, 0.5, 0.98);
    opacity: 0;
    margin-top: 0;
    padding: 0; }
    @media screen and (min-width: 960px) {
      .user-account__list {
        left: auto;
        right: 0; } }
  .user-account__list-item {
    opacity: 1;
    overflow: hidden; }
  .user-account__list-item-link {
    outline: 0;
    text-decoration: none;
    display: block; }
  .user-account__list-item--user-name {
    border-top: 0; }
  .user-account .hidden {
    display: none !important; }
  .user-account--text {
    display: none; }
    @media screen and (min-width: 960px) {
      .user-account--text {
        display: block; } }
  .user-account--icon {
    height: 2.2rem;
    display: inline-block;
    padding-right: 0.3rem; }
    @media screen and (min-width: 960px) {
      .user-account--icon {
        display: none; } }
    .user-account--icon .st0 {
      fill: #010202; }
    .user-account--icon .st1 {
      stroke: #010202;
      fill: none;
      stroke-miterlimit: 10; }

.is-signed-in .user-account:hover .user-account__list {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  display: block;
  visibility: visible;
  padding-bottom: 2rem;
  opacity: 1;
  right: 0;
  left: auto; }
.is-signed-in .user-account__profile {
  display: block; }
.is-signed-in .user-account__sign-in-link {
  display: none; }

.slab.slab--commercial .site-search {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
  float: right;
  overflow: visible; }
  .slab.slab--commercial .site-search__toggle-btn {
    display: block;
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden; }
    .slab.slab--commercial .site-search__toggle-btn--icon {
      display: inline-block;
      height: 2.2rem;
      -webkit-transform: scale(-1, 1);
      -moz-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
      -o-transform: scale(-1, 1);
      transform: scale(-1, 1); }
      @media screen and (min-width: 960px) {
        .slab.slab--commercial .site-search__toggle-btn--icon {
          display: none; } }
      .slab.slab--commercial .site-search__toggle-btn--icon .st0 {
        stroke: #010202;
        fill: none;
        stroke-width: 2;
        stroke-miterlimit: 10; }
    .slab.slab--commercial .site-search__toggle-btn--text {
      display: none; }
      @media screen and (min-width: 960px) {
        .slab.slab--commercial .site-search__toggle-btn--text {
          display: block; } }
  .slab.slab--commercial .site-search__inner {
    -webkit-transform: translateY(-1.5rem);
    -moz-transform: translateY(-1.5rem);
    -ms-transform: translateY(-1.5rem);
    -o-transform: translateY(-1.5rem);
    transform: translateY(-1.5rem);
    -webkit-transform: translate3d(0, -1.5rem, 0);
    -moz-transform: translate3d(0, -1.5rem, 0);
    -ms-transform: translate3d(0, -1.5rem, 0);
    -o-transform: translate3d(0, -1.5rem, 0);
    transform: translate3d(0, -1.5rem, 0);
    z-index: 200;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    padding-top: 2rem;
    display: none;
    transition: transform 0.08s, cubic-bezier(0.865, 0.02, 0.13, 1.02), opacity 0.08s, cubic-bezier(0, 1.07, 0.5, 0.98);
    opacity: 0;
    position: absolute; }
    @media screen and (min-width: 640px) {
      .slab.slab--commercial .site-search__inner {
        height: 18rem; } }
    @media screen and (min-width: 960px) {
      .slab.slab--commercial .site-search__inner {
        top: 3.6rem;
        padding-top: 1rem;
        height: 14.4rem; } }
  .slab.slab--commercial .site-search__title {
    display: block;
    float: left;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    color: grey;
    font-weight: normal;
    margin-top: 0; }
    @media screen and (min-width: 960px) {
      .slab.slab--commercial .site-search__title {
        font-size: 2rem;
        margin-bottom: 1rem; } }
  .slab.slab--commercial .site-search__close-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 1.6rem;
    height: 1.6rem;
    cursor: pointer; }
    @media screen and (min-width: 960px) {
      .slab.slab--commercial .site-search__close-btn {
        top: 0.5rem;
        width: 1.8rem;
        height: 1.8rem; } }
  .slab.slab--commercial .site-search .svg-close-icon__cross {
    fill: grey; }
  .slab.slab--commercial .site-search__form {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: 60rem; }
    .slab.slab--commercial .site-search__form:before, .slab.slab--commercial .site-search__form:after {
      content: " ";
      display: table; }
    .slab.slab--commercial .site-search__form:after {
      clear: both; }
    @media screen and (min-width: 960px) {
      .slab.slab--commercial .site-search__form {
        margin-top: 1.7rem;
        margin-bottom: 1rem; } }
  .slab.slab--commercial .site-search__input-search {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-border-top-left-radius: 0;
    -moz-border-top-left-radius: 0;
    -ms-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -moz-border-top-right-radius: 0;
    -ms-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-bottom-right-radius: 0;
    -ms-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-bottom-left-radius: 0;
    -ms-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    display: none;
    margin: 0 auto;
    margin-bottom: 1rem;
    width: 100%;
    padding: 1rem;
    border: 0;
    outline-style: none;
    background-color: #ffffff;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    @media screen and (min-width: 960px) {
      .slab.slab--commercial .site-search__input-search {
        float: left;
        width: 45rem;
        -moz-box-sizing: content-box;
        box-sizing: content-box; } }
  .slab.slab--commercial .site-search__search-btn {
    margin: 0 auto;
    margin-bottom: 1rem;
    display: block;
    width: 100%;
    padding: 1rem;
    border: 0; }
    @media screen and (min-width: 481px) and (max-width: 960px) {
      .slab.slab--commercial .site-search__search-btn {
        margin-bottom: 3rem; } }
    @media screen and (min-width: 960px) {
      .slab.slab--commercial .site-search__search-btn {
        float: right;
        width: 13rem; } }
.slab.slab--commercial .site-search__inner.slide-in-top {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  display: block;
  opacity: 1; }
  .slab.slab--commercial .site-search__inner.slide-in-top .site-search__input-search {
    display: block; }

.gsc-completion-container {
  font-size: 16px !important;
  box-shadow: none !important;
  font-weight: normal !important;
  background-color: #ffffff !important; }

.gssb_e {
  box-shadow: none !important; }
  .gssb_e .gsq_a {
    padding-left: 0.7rem;
    padding-top: 0.4rem;
    padding-bottom: 0.3rem; }
    .gssb_e .gsq_a:hover {
      background-color: #3A2E94;
      color: #ffffff; }
  .gssb_e .gsc-completion-selected {
    background-color: #3A2E94;
    color: #ffffff; }

@media screen and (min-width: 640px) {
  html.tablet.android4_2 .slab.slab--commercial .site-search__inner {
    height: 19.6rem; } }
@media screen and (min-width: 960px) {
  html.tablet.android4_2 .slab.slab--commercial .site-search__inner {
    top: 3.6rem;
    padding-top: 1rem;
    height: 12rem; } }

@media screen and (min-width: 320px) {
  html.mobile.android4_3 .slab.slab--commercial .site-search__inner {
    height: 16.7rem; } }
@media screen and (min-width: 640px) {
  html.mobile.android4_3 .slab.slab--commercial .site-search__inner {
    padding-top: 4rem;
    height: 19.9rem; } }
@media screen and (min-width: 960px) {
  html.mobile.android4_3 .slab.slab--commercial .site-search__inner {
    top: 3.6rem;
    padding-top: 1rem;
    height: 12rem; } }

@media screen and (min-width: 640px) {
  html.tablet.ios9_0 .slab.slab--commercial .site-search__inner {
    height: 18.2rem; } }
@media screen and (min-width: 960px) {
  html.tablet.ios9_0 .slab.slab--commercial .site-search__inner {
    top: 3.6rem;
    padding-top: 1rem;
    height: 12rem; } }

.slab.slab--sortby {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 33px;
  line-height: 3.3rem; }
  .slab.slab--sortby #google-sort-container {
    padding: 0 1rem; }
  .slab.slab--sortby .slab__inner {
    overflow: visible; }

.slab--results {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 33px;
  line-height: 3.3rem; }
  .slab--results .slab__block {
    width: 100%;
    float: left;
    padding-left: 10px;
    padding-right: 10px; }
    .slab--results .slab__block:nth-of-type(2), .slab--results .slab__block:nth-of-type(3) {
      max-height: 100%; }
    .slab--results .slab__block:nth-of-type(3) {
      float: none; }
    @media (min-width: 960px) {
      .slab--results .slab__block:nth-of-type(1) {
        width: 66.66667%;
        float: left;
        padding-left: 10px;
        padding-right: 10px; }
      .slab--results .slab__block:nth-of-type(2) {
        width: 66.66667%;
        float: left;
        padding-left: 10px;
        padding-right: 10px; }
      .slab--results .slab__block:nth-of-type(3) {
        width: 33.33333%;
        float: left;
        padding-left: 10px;
        padding-right: 10px; } }
    @media (min-width: 1300px) {
      .slab--results .slab__block:nth-of-type(1) {
        width: 75%;
        float: left;
        padding-left: 10px;
        padding-right: 10px; }
      .slab--results .slab__block:nth-of-type(2) {
        width: 75%;
        float: left;
        padding-left: 10px;
        padding-right: 10px; }
      .slab--results .slab__block:nth-of-type(3) {
        width: 25%;
        float: left;
        padding-left: 10px;
        padding-right: 10px; } }
  .slab--results .slab .slab__block:nth-of-type(1) .google-add-container {
    display: none; }
  @media (min-width: 960px) {
    .slab--results .slab .slab__block:nth-of-type(1) .google-add-container {
      display: block; } }
  .slab--results .slab .slab__block:nth-of-type(3) .google-add-container {
    margin-bottom: 2rem; }
  .slab--results.no-google-results {
    padding-top: 2rem;
    padding-bottom: 2rem; }
    .slab--results.no-google-results .dc-med-rect, .slab--results.no-google-results .mobileAdTag,
    .slab--results.no-google-results .google-add-container, .slab--results.no-google-results .adGPTTag {
      display: none; }
    .slab--results.no-google-results .slab__block:nth-of-type(2) {
      width: 100%;
      border: none; }
      .slab--results.no-google-results .slab__block:nth-of-type(2) .search-results-noresults {
        width: 100%; }
  .slab--results .dc-med-rect {
    max-width: 32rem; }
  .slab--results .google-add-container {
    color: #004466;
    font-size: 0;
    line-height: 0; }
  .slab--results .mobileAdTag, .slab--results .dc-med-rect, .slab--results .adGPTTag {
    margin: 0 auto; }
  .slab--results .mobileAdTag .GoogleActiveViewClass {
    width: 300px;
    margin: 0 auto; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #333333;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777; }

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }
.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857;
  color: #777777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: ""; }
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px; }

@media (min-width: 640px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }
.search-results-header {
  color: #333333;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 1rem;
  position: relative; }
  .search-results-header:before, .search-results-header:after {
    content: " ";
    display: table; }
  .search-results-header:after {
    clear: both; }
  .search-results-header__info {
    float: left;
    line-height: 3.3rem; }
  .search-results-header fieldset {
    border: 0px !important;
    padding: 0px !important; }
  .search-results-header__sortby {
    float: right;
    position: relative; }
    .search-results-header__sortby select {
      background: whiteSmoke;
      font-weight: bold; }
    .search-results-header__sortby label {
      font-size: 1.3rem;
      display: inline-block !important;
      color: #333333 !important; }
  .search-results-header .dropdown {
    display: inline-block;
    line-height: 2.1rem; }
  .search-results-header .dropdown-menu {
    left: auto !important;
    right: 0 !important;
    top: -4px !important;
    right: -4px !important; }
  .search-results-header .dropdown-menu > .active > a, .search-results-header .dropdown-menu > .active > a:hover, .search-results-header .dropdown-menu > .active > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0; }
  .search-results-header .btn {
    min-width: 11rem;
    text-align: left;
    position: relative;
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-weight: 700;
    padding: 0.5rem; }
  .search-results-header .caret {
    float: right;
    position: absolute;
    top: 50%;
    right: 0.5rem; }

.search-result-item {
  padding: 1rem;
  display: block; }
  .search-result-item:before, .search-result-item:after {
    content: " ";
    display: table; }
  .search-result-item:after {
    clear: both; }
  .search-result-item__imgbox {
    width: 13rem;
    float: left;
    margin-right: 1.4rem; }
  .search-result-item__img {
    padding: 0;
    width: 13rem;
    height: 9rem; }
  .search-result-item__link {
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 2.4rem;
    display: block;
    border-bottom: 1px solid rgba(34, 34, 34, 0.1);
    text-decoration: none; }
  .search-result-item__formattedUrl {
    display: none; }
  .search-result-item__snippet {
    font-size: 1.4rem;
    line-height: 2rem;
    padding-top: 0.6rem;
    display: block; }
    .search-result-item__snippet br {
      display: none; }

.search-results-noresults {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.5rem;
  margin: 0.5rem;
  background: rgba(0, 68, 102, 0.05); }

.google-search-pagination {
  cursor: pointer;
  padding: 0 1rem 1rem 1rem; }
  .google-search-pagination__page {
    font-weight: normal;
    color: black;
    margin-right: 0.8rem; }
    .google-search-pagination__page:hover {
      color: black;
      text-decoration: underline; }
  .google-search-pagination__page--active {
    font-weight: bold;
    color: red;
    margin-right: 0.8rem; }
    .google-search-pagination__page--active:hover {
      color: red;
      text-decoration: underline; }

@font-face {
  font-family: "janrain-icons";
  src: url("../fonts/bootstrap/janrain-icons.woff?c763c7ff6741322ba924bbc430f14508") format("woff"), url("../fonts/bootstrap/janrain-icons.ttf?c763c7ff6741322ba924bbc430f14508") format("truetype"), url("../fonts/bootstrap/janrain-icons.svg?c763c7ff6741322ba924bbc430f14508#janrain-icons") format("svg");
  font-weight: normal;
  font-style: normal; }
.janrain-modal .icon-extend-class, .janrain-modal .capture_input_checkbox + .custom-checkbox:before, .janrain-modal .janrain-profile .capture_remove_linkedaccount:before, .janrain-profile .janrain-modal .capture_remove_linkedaccount:before, .janrain-modal .janrain-profile [class^="janrain-icon-"]:before, .janrain-profile .janrain-modal [class^="janrain-icon-"]:before,
.janrain-modal .janrain-profile [class*=" janrain-icon-"]:before,
.janrain-profile .janrain-modal [class*=" janrain-icon-"]:before, .janrain-modal #janrainProviderPages [class^="janrain-provider-icon-"]:before, #janrainProviderPages .janrain-modal [class^="janrain-provider-icon-"]:before,
.janrain-modal #janrainProviderPages [class*=" janrain-provider-icon-"]:before,
#janrainProviderPages .janrain-modal [class*=" janrain-provider-icon-"]:before,
.janrain-modal #janrainAuthReturnExperience [class^="janrain-provider-icon-"]:before,
#janrainAuthReturnExperience .janrain-modal [class^="janrain-provider-icon-"]:before,
.janrain-modal #janrainAuthReturnExperience [class*=" janrain-provider-icon-"]:before,
#janrainAuthReturnExperience .janrain-modal [class*=" janrain-provider-icon-"]:before,
.janrain-modal #mergeAccounts [class^="janrain-provider-icon-"]:before,
#mergeAccounts .janrain-modal [class^="janrain-provider-icon-"]:before,
.janrain-modal #mergeAccounts [class*=" janrain-provider-icon-"]:before,
#mergeAccounts .janrain-modal [class*=" janrain-provider-icon-"]:before,
.janrain-modal #traditionalAuthenticateMerge [class^="janrain-provider-icon-"]:before,
#traditionalAuthenticateMerge .janrain-modal [class^="janrain-provider-icon-"]:before,
.janrain-modal #traditionalAuthenticateMerge [class*=" janrain-provider-icon-"]:before,
#traditionalAuthenticateMerge .janrain-modal [class*=" janrain-provider-icon-"]:before,
.janrain-modal #editProfile [class^="janrain-provider-icon-"]:before,
#editProfile .janrain-modal [class^="janrain-provider-icon-"]:before,
.janrain-modal #editProfile [class*=" janrain-provider-icon-"]:before,
#editProfile .janrain-modal [class*=" janrain-provider-icon-"]:before,
.janrain-modal [class^="icon-"]:before,
.janrain-modal [class*=" icon-"]:before,
.janrain-profile .icon-extend-class,
.janrain-profile .janrain-modal .capture_input_checkbox + .custom-checkbox:before,
.janrain-modal .janrain-profile .capture_input_checkbox + .custom-checkbox:before,
.janrain-profile .capture_remove_linkedaccount:before,
.janrain-profile [class^="janrain-icon-"]:before,
.janrain-profile [class*=" janrain-icon-"]:before,
.janrain-profile #janrainProviderPages [class^="janrain-provider-icon-"]:before,
#janrainProviderPages .janrain-profile [class^="janrain-provider-icon-"]:before,
.janrain-profile #janrainProviderPages [class*=" janrain-provider-icon-"]:before,
#janrainProviderPages .janrain-profile [class*=" janrain-provider-icon-"]:before,
.janrain-profile #janrainAuthReturnExperience [class^="janrain-provider-icon-"]:before,
#janrainAuthReturnExperience .janrain-profile [class^="janrain-provider-icon-"]:before,
.janrain-profile #janrainAuthReturnExperience [class*=" janrain-provider-icon-"]:before,
#janrainAuthReturnExperience .janrain-profile [class*=" janrain-provider-icon-"]:before,
.janrain-profile #mergeAccounts [class^="janrain-provider-icon-"]:before,
#mergeAccounts .janrain-profile [class^="janrain-provider-icon-"]:before,
.janrain-profile #mergeAccounts [class*=" janrain-provider-icon-"]:before,
#mergeAccounts .janrain-profile [class*=" janrain-provider-icon-"]:before,
.janrain-profile #traditionalAuthenticateMerge [class^="janrain-provider-icon-"]:before,
#traditionalAuthenticateMerge .janrain-profile [class^="janrain-provider-icon-"]:before,
.janrain-profile #traditionalAuthenticateMerge [class*=" janrain-provider-icon-"]:before,
#traditionalAuthenticateMerge .janrain-profile [class*=" janrain-provider-icon-"]:before,
.janrain-profile #editProfile [class^="janrain-provider-icon-"]:before,
#editProfile .janrain-profile [class^="janrain-provider-icon-"]:before,
.janrain-profile #editProfile [class*=" janrain-provider-icon-"]:before,
#editProfile .janrain-profile [class*=" janrain-provider-icon-"]:before,
.janrain-profile [class^="icon-"]:before,
.janrain-profile [class*=" icon-"]:before {
  font-family: "janrain-icons";
  display: inline-block;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
.janrain-modal .icon-amazon:before, .janrain-modal #janrainProviderPages .janrain-provider-icon-amazon:before, #janrainProviderPages .janrain-modal .janrain-provider-icon-amazon:before,
.janrain-modal #janrainAuthReturnExperience .janrain-provider-icon-amazon:before,
#janrainAuthReturnExperience .janrain-modal .janrain-provider-icon-amazon:before,
.janrain-modal #mergeAccounts .janrain-provider-icon-amazon:before,
#mergeAccounts .janrain-modal .janrain-provider-icon-amazon:before,
.janrain-modal #traditionalAuthenticateMerge .janrain-provider-icon-amazon:before,
#traditionalAuthenticateMerge .janrain-modal .janrain-provider-icon-amazon:before,
.janrain-modal #editProfile .janrain-provider-icon-amazon:before,
#editProfile .janrain-modal .janrain-provider-icon-amazon:before,
.janrain-profile .icon-amazon:before,
.janrain-profile #janrainProviderPages .janrain-provider-icon-amazon:before,
#janrainProviderPages .janrain-profile .janrain-provider-icon-amazon:before,
.janrain-profile #janrainAuthReturnExperience .janrain-provider-icon-amazon:before,
#janrainAuthReturnExperience .janrain-profile .janrain-provider-icon-amazon:before,
.janrain-profile #mergeAccounts .janrain-provider-icon-amazon:before,
#mergeAccounts .janrain-profile .janrain-provider-icon-amazon:before,
.janrain-profile #traditionalAuthenticateMerge .janrain-provider-icon-amazon:before,
#traditionalAuthenticateMerge .janrain-profile .janrain-provider-icon-amazon:before,
.janrain-profile #editProfile .janrain-provider-icon-amazon:before,
#editProfile .janrain-profile .janrain-provider-icon-amazon:before {
  content: "\e000"; }
.janrain-modal .icon-arrow-left-bold:before,
.janrain-profile .icon-arrow-left-bold:before {
  content: "\e001"; }
.janrain-modal .icon-arrow-left-circle-line:before,
.janrain-profile .icon-arrow-left-circle-line:before {
  content: "\e002"; }
.janrain-modal .icon-arrow-right-bold:before,
.janrain-profile .icon-arrow-right-bold:before {
  content: "\e003"; }
.janrain-modal .icon-arrow-right-circle-line:before,
.janrain-profile .icon-arrow-right-circle-line:before {
  content: "\e004"; }
.janrain-modal .icon-arrow-right:before,
.janrain-profile .icon-arrow-right:before {
  content: "\e005"; }
.janrain-modal .icon-back:before, .janrain-modal .janrain-footer__link--with-arrow-left:before,
.janrain-profile .icon-back:before,
.janrain-profile .janrain-footer__link--with-arrow-left:before {
  content: "\e006"; }
.janrain-modal .icon-calendar:before,
.janrain-profile .icon-calendar:before {
  content: "\e007"; }
.janrain-modal .icon-clock:before,
.janrain-profile .icon-clock:before {
  content: "\e008"; }
.janrain-modal .icon-close:before,
.janrain-profile .icon-close:before {
  content: "\e009"; }
.janrain-modal .icon-document:before,
.janrain-profile .icon-document:before {
  content: "\e00a"; }
.janrain-modal .icon-double-quote:before,
.janrain-profile .icon-double-quote:before {
  content: "\e00b"; }
.janrain-modal .icon-email-circle:before,
.janrain-profile .icon-email-circle:before {
  content: "\e00c"; }
.janrain-modal .icon-email:before, .janrain-modal #janrainProviderPages .janrain-provider-icon-email:before, #janrainProviderPages .janrain-modal .janrain-provider-icon-email:before,
.janrain-modal #janrainAuthReturnExperience .janrain-provider-icon-email:before,
#janrainAuthReturnExperience .janrain-modal .janrain-provider-icon-email:before,
.janrain-modal #mergeAccounts .janrain-provider-icon-email:before,
#mergeAccounts .janrain-modal .janrain-provider-icon-email:before,
.janrain-modal #traditionalAuthenticateMerge .janrain-provider-icon-email:before,
#traditionalAuthenticateMerge .janrain-modal .janrain-provider-icon-email:before,
.janrain-modal #editProfile .janrain-provider-icon-email:before,
#editProfile .janrain-modal .janrain-provider-icon-email:before,
.janrain-profile .icon-email:before,
.janrain-profile #janrainProviderPages .janrain-provider-icon-email:before,
#janrainProviderPages .janrain-profile .janrain-provider-icon-email:before,
.janrain-profile #janrainAuthReturnExperience .janrain-provider-icon-email:before,
#janrainAuthReturnExperience .janrain-profile .janrain-provider-icon-email:before,
.janrain-profile #mergeAccounts .janrain-provider-icon-email:before,
#mergeAccounts .janrain-profile .janrain-provider-icon-email:before,
.janrain-profile #traditionalAuthenticateMerge .janrain-provider-icon-email:before,
#traditionalAuthenticateMerge .janrain-profile .janrain-provider-icon-email:before,
.janrain-profile #editProfile .janrain-provider-icon-email:before,
#editProfile .janrain-profile .janrain-provider-icon-email:before {
  content: "\e00d"; }
.janrain-modal .icon-error-bold:before, .janrain-modal .janrain-profile .capture_remove_linkedaccount:before, .janrain-profile .janrain-modal .capture_remove_linkedaccount:before,
.janrain-profile .icon-error-bold:before,
.janrain-profile .capture_remove_linkedaccount:before {
  content: "\e00e"; }
.janrain-modal .icon-facebook-circle:before,
.janrain-profile .icon-facebook-circle:before {
  content: "\e00f"; }
.janrain-modal .icon-facebook:before, .janrain-modal #janrainProviderPages .janrain-provider-icon-facebook:before, #janrainProviderPages .janrain-modal .janrain-provider-icon-facebook:before,
.janrain-modal #janrainAuthReturnExperience .janrain-provider-icon-facebook:before,
#janrainAuthReturnExperience .janrain-modal .janrain-provider-icon-facebook:before,
.janrain-modal #mergeAccounts .janrain-provider-icon-facebook:before,
#mergeAccounts .janrain-modal .janrain-provider-icon-facebook:before,
.janrain-modal #traditionalAuthenticateMerge .janrain-provider-icon-facebook:before,
#traditionalAuthenticateMerge .janrain-modal .janrain-provider-icon-facebook:before,
.janrain-modal #editProfile .janrain-provider-icon-facebook:before,
#editProfile .janrain-modal .janrain-provider-icon-facebook:before,
.janrain-profile .icon-facebook:before,
.janrain-profile #janrainProviderPages .janrain-provider-icon-facebook:before,
#janrainProviderPages .janrain-profile .janrain-provider-icon-facebook:before,
.janrain-profile #janrainAuthReturnExperience .janrain-provider-icon-facebook:before,
#janrainAuthReturnExperience .janrain-profile .janrain-provider-icon-facebook:before,
.janrain-profile #mergeAccounts .janrain-provider-icon-facebook:before,
#mergeAccounts .janrain-profile .janrain-provider-icon-facebook:before,
.janrain-profile #traditionalAuthenticateMerge .janrain-provider-icon-facebook:before,
#traditionalAuthenticateMerge .janrain-profile .janrain-provider-icon-facebook:before,
.janrain-profile #editProfile .janrain-provider-icon-facebook:before,
#editProfile .janrain-profile .janrain-provider-icon-facebook:before {
  content: "\e010"; }
.janrain-modal .icon-feed:before,
.janrain-profile .icon-feed:before {
  content: "\e011"; }
.janrain-modal .icon-form-delete:before,
.janrain-profile .icon-form-delete:before {
  content: "\e012"; }
.janrain-modal .icon-google-plus-circle:before,
.janrain-profile .icon-google-plus-circle:before {
  content: "\e013"; }
.janrain-modal .icon-google-plus:before, .janrain-modal #janrainProviderPages .janrain-provider-icon-googleplus:before, #janrainProviderPages .janrain-modal .janrain-provider-icon-googleplus:before,
.janrain-modal #janrainAuthReturnExperience .janrain-provider-icon-googleplus:before,
#janrainAuthReturnExperience .janrain-modal .janrain-provider-icon-googleplus:before,
.janrain-modal #mergeAccounts .janrain-provider-icon-googleplus:before,
#mergeAccounts .janrain-modal .janrain-provider-icon-googleplus:before,
.janrain-modal #traditionalAuthenticateMerge .janrain-provider-icon-googleplus:before,
#traditionalAuthenticateMerge .janrain-modal .janrain-provider-icon-googleplus:before,
.janrain-modal #editProfile .janrain-provider-icon-googleplus:before,
#editProfile .janrain-modal .janrain-provider-icon-googleplus:before,
.janrain-profile .icon-google-plus:before,
.janrain-profile #janrainProviderPages .janrain-provider-icon-googleplus:before,
#janrainProviderPages .janrain-profile .janrain-provider-icon-googleplus:before,
.janrain-profile #janrainAuthReturnExperience .janrain-provider-icon-googleplus:before,
#janrainAuthReturnExperience .janrain-profile .janrain-provider-icon-googleplus:before,
.janrain-profile #mergeAccounts .janrain-provider-icon-googleplus:before,
#mergeAccounts .janrain-profile .janrain-provider-icon-googleplus:before,
.janrain-profile #traditionalAuthenticateMerge .janrain-provider-icon-googleplus:before,
#traditionalAuthenticateMerge .janrain-profile .janrain-provider-icon-googleplus:before,
.janrain-profile #editProfile .janrain-provider-icon-googleplus:before,
#editProfile .janrain-profile .janrain-provider-icon-googleplus:before {
  content: "\e014"; }
.janrain-modal .icon-instagram-circle:before,
.janrain-profile .icon-instagram-circle:before {
  content: "\e015"; }
.janrain-modal .icon-instagram:before,
.janrain-profile .icon-instagram:before {
  content: "\e016"; }
.janrain-modal .icon-linkedin:before, .janrain-modal #janrainProviderPages .janrain-provider-icon-linkedin:before, #janrainProviderPages .janrain-modal .janrain-provider-icon-linkedin:before,
.janrain-modal #janrainAuthReturnExperience .janrain-provider-icon-linkedin:before,
#janrainAuthReturnExperience .janrain-modal .janrain-provider-icon-linkedin:before,
.janrain-modal #mergeAccounts .janrain-provider-icon-linkedin:before,
#mergeAccounts .janrain-modal .janrain-provider-icon-linkedin:before,
.janrain-modal #traditionalAuthenticateMerge .janrain-provider-icon-linkedin:before,
#traditionalAuthenticateMerge .janrain-modal .janrain-provider-icon-linkedin:before,
.janrain-modal #editProfile .janrain-provider-icon-linkedin:before,
#editProfile .janrain-modal .janrain-provider-icon-linkedin:before,
.janrain-profile .icon-linkedin:before,
.janrain-profile #janrainProviderPages .janrain-provider-icon-linkedin:before,
#janrainProviderPages .janrain-profile .janrain-provider-icon-linkedin:before,
.janrain-profile #janrainAuthReturnExperience .janrain-provider-icon-linkedin:before,
#janrainAuthReturnExperience .janrain-profile .janrain-provider-icon-linkedin:before,
.janrain-profile #mergeAccounts .janrain-provider-icon-linkedin:before,
#mergeAccounts .janrain-profile .janrain-provider-icon-linkedin:before,
.janrain-profile #traditionalAuthenticateMerge .janrain-provider-icon-linkedin:before,
#traditionalAuthenticateMerge .janrain-profile .janrain-provider-icon-linkedin:before,
.janrain-profile #editProfile .janrain-provider-icon-linkedin:before,
#editProfile .janrain-profile .janrain-provider-icon-linkedin:before {
  content: "\e017"; }
.janrain-modal .icon-list-justify:before,
.janrain-profile .icon-list-justify:before {
  content: "\e018"; }
.janrain-modal .icon-live_id:before, .janrain-modal #janrainProviderPages .janrain-provider-icon-live_id:before, #janrainProviderPages .janrain-modal .janrain-provider-icon-live_id:before,
.janrain-modal #janrainAuthReturnExperience .janrain-provider-icon-live_id:before,
#janrainAuthReturnExperience .janrain-modal .janrain-provider-icon-live_id:before,
.janrain-modal #mergeAccounts .janrain-provider-icon-live_id:before,
#mergeAccounts .janrain-modal .janrain-provider-icon-live_id:before,
.janrain-modal #traditionalAuthenticateMerge .janrain-provider-icon-live_id:before,
#traditionalAuthenticateMerge .janrain-modal .janrain-provider-icon-live_id:before,
.janrain-modal #editProfile .janrain-provider-icon-live_id:before,
#editProfile .janrain-modal .janrain-provider-icon-live_id:before,
.janrain-profile .icon-live_id:before,
.janrain-profile #janrainProviderPages .janrain-provider-icon-live_id:before,
#janrainProviderPages .janrain-profile .janrain-provider-icon-live_id:before,
.janrain-profile #janrainAuthReturnExperience .janrain-provider-icon-live_id:before,
#janrainAuthReturnExperience .janrain-profile .janrain-provider-icon-live_id:before,
.janrain-profile #mergeAccounts .janrain-provider-icon-live_id:before,
#mergeAccounts .janrain-profile .janrain-provider-icon-live_id:before,
.janrain-profile #traditionalAuthenticateMerge .janrain-provider-icon-live_id:before,
#traditionalAuthenticateMerge .janrain-profile .janrain-provider-icon-live_id:before,
.janrain-profile #editProfile .janrain-provider-icon-live_id:before,
#editProfile .janrain-profile .janrain-provider-icon-live_id:before {
  content: "\e019"; }
.janrain-modal .icon-location:before,
.janrain-profile .icon-location:before {
  content: "\e01a"; }
.janrain-modal .icon-locked:before, .janrain-modal .janrain-profile .janrain-icon-locked:before, .janrain-profile .janrain-modal .janrain-icon-locked:before,
.janrain-profile .icon-locked:before,
.janrain-profile .janrain-icon-locked:before {
  content: "\e01b"; }
.janrain-modal .icon-phone:before,
.janrain-profile .icon-phone:before {
  content: "\e01c"; }
.janrain-modal .icon-pinterest-circle:before,
.janrain-profile .icon-pinterest-circle:before {
  content: "\e01d"; }
.janrain-modal .icon-pinterest:before,
.janrain-profile .icon-pinterest:before {
  content: "\e01e"; }
.janrain-modal .icon-plus:before,
.janrain-profile .icon-plus:before {
  content: "\e01f"; }
.janrain-modal .icon-pushpin:before,
.janrain-profile .icon-pushpin:before {
  content: "\e020"; }
.janrain-modal .icon-search:before,
.janrain-profile .icon-search:before {
  content: "\e021"; }
.janrain-modal .icon-spotify-circle:before,
.janrain-profile .icon-spotify-circle:before {
  content: "\e022"; }
.janrain-modal .icon-spotify-lines:before,
.janrain-profile .icon-spotify-lines:before {
  content: "\e023"; }
.janrain-modal .icon-star:before,
.janrain-profile .icon-star:before {
  content: "\e024"; }
.janrain-modal .icon-success-circle:before,
.janrain-profile .icon-success-circle:before {
  content: "\e025"; }
.janrain-modal .icon-target:before,
.janrain-profile .icon-target:before {
  content: "\e026"; }
.janrain-modal .icon-tick:before, .janrain-modal .capture_input_checkbox:checked + .custom-checkbox:before, .janrain-modal .janrain-profile .janrain-icon-check:before, .janrain-profile .janrain-modal .janrain-icon-check:before,
.janrain-profile .icon-tick:before,
.janrain-profile .janrain-modal .capture_input_checkbox:checked + .custom-checkbox:before,
.janrain-modal .janrain-profile .capture_input_checkbox:checked + .custom-checkbox:before,
.janrain-profile .janrain-icon-check:before {
  content: "\e027"; }
.janrain-modal .icon-tumblr-circle:before,
.janrain-profile .icon-tumblr-circle:before {
  content: "\e028"; }
.janrain-modal .icon-tumblr:before,
.janrain-profile .icon-tumblr:before {
  content: "\e029"; }
.janrain-modal .icon-twitter-circle:before,
.janrain-profile .icon-twitter-circle:before {
  content: "\e02a"; }
.janrain-modal .icon-twitter:before, .janrain-modal #janrainProviderPages .janrain-provider-icon-twitter:before, #janrainProviderPages .janrain-modal .janrain-provider-icon-twitter:before,
.janrain-modal #janrainAuthReturnExperience .janrain-provider-icon-twitter:before,
#janrainAuthReturnExperience .janrain-modal .janrain-provider-icon-twitter:before,
.janrain-modal #mergeAccounts .janrain-provider-icon-twitter:before,
#mergeAccounts .janrain-modal .janrain-provider-icon-twitter:before,
.janrain-modal #traditionalAuthenticateMerge .janrain-provider-icon-twitter:before,
#traditionalAuthenticateMerge .janrain-modal .janrain-provider-icon-twitter:before,
.janrain-modal #editProfile .janrain-provider-icon-twitter:before,
#editProfile .janrain-modal .janrain-provider-icon-twitter:before,
.janrain-profile .icon-twitter:before,
.janrain-profile #janrainProviderPages .janrain-provider-icon-twitter:before,
#janrainProviderPages .janrain-profile .janrain-provider-icon-twitter:before,
.janrain-profile #janrainAuthReturnExperience .janrain-provider-icon-twitter:before,
#janrainAuthReturnExperience .janrain-profile .janrain-provider-icon-twitter:before,
.janrain-profile #mergeAccounts .janrain-provider-icon-twitter:before,
#mergeAccounts .janrain-profile .janrain-provider-icon-twitter:before,
.janrain-profile #traditionalAuthenticateMerge .janrain-provider-icon-twitter:before,
#traditionalAuthenticateMerge .janrain-profile .janrain-provider-icon-twitter:before,
.janrain-profile #editProfile .janrain-provider-icon-twitter:before,
#editProfile .janrain-profile .janrain-provider-icon-twitter:before {
  content: "\e02b"; }
.janrain-modal .icon-unlocked:before, .janrain-modal .janrain-profile .janrain-icon-unlocked:before, .janrain-profile .janrain-modal .janrain-icon-unlocked:before,
.janrain-profile .icon-unlocked:before,
.janrain-profile .janrain-icon-unlocked:before {
  content: "\e02c"; }
.janrain-modal .icon-whatsapp-circle:before,
.janrain-profile .icon-whatsapp-circle:before {
  content: "\e02d"; }
.janrain-modal .icon-whatsapp:before,
.janrain-profile .icon-whatsapp:before {
  content: "\e02e"; }
.janrain-modal .icon-yahoo:before, .janrain-modal #janrainProviderPages .janrain-provider-icon-yahoo:before, #janrainProviderPages .janrain-modal .janrain-provider-icon-yahoo:before,
.janrain-modal #janrainAuthReturnExperience .janrain-provider-icon-yahoo:before,
#janrainAuthReturnExperience .janrain-modal .janrain-provider-icon-yahoo:before,
.janrain-modal #mergeAccounts .janrain-provider-icon-yahoo:before,
#mergeAccounts .janrain-modal .janrain-provider-icon-yahoo:before,
.janrain-modal #traditionalAuthenticateMerge .janrain-provider-icon-yahoo:before,
#traditionalAuthenticateMerge .janrain-modal .janrain-provider-icon-yahoo:before,
.janrain-modal #editProfile .janrain-provider-icon-yahoo:before,
#editProfile .janrain-modal .janrain-provider-icon-yahoo:before,
.janrain-profile .icon-yahoo:before,
.janrain-profile #janrainProviderPages .janrain-provider-icon-yahoo:before,
#janrainProviderPages .janrain-profile .janrain-provider-icon-yahoo:before,
.janrain-profile #janrainAuthReturnExperience .janrain-provider-icon-yahoo:before,
#janrainAuthReturnExperience .janrain-profile .janrain-provider-icon-yahoo:before,
.janrain-profile #mergeAccounts .janrain-provider-icon-yahoo:before,
#mergeAccounts .janrain-profile .janrain-provider-icon-yahoo:before,
.janrain-profile #traditionalAuthenticateMerge .janrain-provider-icon-yahoo:before,
#traditionalAuthenticateMerge .janrain-profile .janrain-provider-icon-yahoo:before,
.janrain-profile #editProfile .janrain-provider-icon-yahoo:before,
#editProfile .janrain-profile .janrain-provider-icon-yahoo:before {
  content: "\e02f"; }
.janrain-modal .icon-you-tube-circle:before,
.janrain-profile .icon-you-tube-circle:before {
  content: "\e030"; }
.janrain-modal .icon-you-tube:before,
.janrain-profile .icon-you-tube:before {
  content: "\e031"; }

/**
 * JANRAIN HEADER
 */
.janrain-header {
  padding: 16px 52px 16px 20px;
  border-bottom: 1px solid #ebebeb; }
  .janrain-header__text {
    font-family: "montserratregular", sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
    margin: 0;
    padding: 0; }

/**
 * JANRAIN ASIDE
 */
.janrain-aside {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 22px;
  line-height: 2.2rem;
  position: relative;
  padding: 20px;
  text-align: center;
  cursor: auto; }
  .janrain-aside--main {
    display: none; }
    @media screen and (min-width: 640px) {
      .janrain-aside--main {
        background: url("/assets/images/janrain/signIn.jpg") no-repeat;
        background-size: cover;
        width: 550px;
        height: 184px;
        display: block; } }
  .janrain-aside__text {
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-size: 20px;
    font-size: 2rem;
    line-height: 26px;
    line-height: 2.6rem;
    display: block;
    text-align: center;
    margin: 0 auto; }
    .janrain-aside__text--main {
      font-family: "jaf-bernina-sans-condensed", sans-serif;
      font-weight: 700;
      font-size: 30px;
      font-size: 3rem;
      line-height: 32px;
      line-height: 3.2rem;
      margin-top: 15px; }
  .janrain-aside a.janrain-aside__centerText {
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-size: 20px;
    font-size: 2rem;
    line-height: 26px;
    line-height: 2.6rem;
    text-align: center; }

/**
 * JANRAIN CONTENT
 */
.janrain-content {
  font-family: "montserratregular", sans-serif;
  font-weight: 400;
  width: 100%;
  padding: 20px; }
  .janrain-content:before, .janrain-content:after {
    content: " ";
    display: table; }
  .janrain-content:after {
    clear: both; }
  @media screen and (min-width: 640px) {
    .janrain-content {
      padding: 20px 0; } }
  .janrain-content--upper {
    padding-bottom: 0; }
    @media screen and (min-width: 640px) {
      .janrain-content--upper {
        padding: 20px 0 0; } }
  .janrain-content--bottom {
    padding-top: 0; }
    @media screen and (min-width: 640px) {
      .janrain-content--bottom {
        padding: 0 0 20px; } }
  .janrain-content__title {
    font-size: 16px;
    font-size: 1.6rem; }
  .janrain-content__text {
    font-family: "montserratregular", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    line-height: 2rem;
    color: #111111; }
    .janrain-content__text--newsletter {
      min-height: 92px; }
    .janrain-content__text--label {
      display: block;
      cursor: pointer;
      padding-left: 36px; }
    .janrain-content__text--merge-details {
      font-size: 14px;
      font-size: 1.4rem; }
    .janrain-content__text--merge-traditional {
      margin-top: 0; }
      .janrain-content__text--merge-traditional span {
        font-weight: 600; }
  .janrain-content h3 {
    font-weight: normal; }
  .janrain-content .terms {
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-weight: 400; }
    .janrain-content .terms a {
      font-family: "open-sans", sans-serif;
      font-weight: normal;
      font-weight: 400; }
  .janrain-content__header {
    font-family: "montserratregular", sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
    text-align: left; }
    @media screen and (min-width: 640px) {
      .janrain-content__header {
        text-align: center; } }
  .janrain-content__label {
    display: none; }
  @media screen and (min-width: 640px) {
    .janrain-content__wrapper--narrow {
      width: 50%;
      margin: 0 auto; } }

/**
 * JANRAIN CONTENT COLUMN
 */
.janrain-column {
  width: 100%;
  margin: 0; }
  @media screen and (min-width: 640px) {
    .janrain-column {
      width: 50%;
      padding: 0 20px; } }
  .janrain-column--left {
    float: left; }
  .janrain-column--right {
    float: right; }
  .janrain-column--full {
    width: 100%;
    float: left; }
  .janrain-column--centered {
    text-align: center; }

.capture_centerText {
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 300;
  color: #666666;
  text-align: center; }

/**
 * JANRAIN FOOTER
 */
.janrain-footer {
  font-family: "montserratregular", sans-serif;
  font-weight: 400;
  border-top: 1px solid #ebebeb;
  padding: 20px; }
  .janrain-footer:before, .janrain-footer:after {
    content: " ";
    display: table; }
  .janrain-footer:after {
    clear: both; }
  @media screen and (min-width: 640px) {
    .janrain-footer {
      padding: 20px 0; } }
  .janrain-footer__link {
    font-family: "montserratregular", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 40px;
    line-height: 4rem;
    text-decoration: none;
    text-align: center;
    color: #111111;
    display: block; }
    .janrain-footer__link--with-arrow-left:before {
      font-family: janrain-icons, sans-serif;
      font-size: 20px;
      font-size: 2rem;
      vertical-align: middle;
      padding-right: 5px; }
  .janrain-footer__jr-forgot {
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px; }
    @media screen and (min-width: 640px) {
      .janrain-footer__jr-forgot {
        margin-bottom: 0px; } }

#recaptcha_area {
  font-size: 10px;
  font-size: 1rem;
  background-color: #F5F5F5;
  width: 230px;
  clear: both; }
  #recaptcha_area .recaptchatable .recaptcha_image_cell,
  #recaptcha_area .recaptchatable #recaptcha_image,
  #recaptcha_area #recaptcha_area #recaptcha_image img,
  #recaptcha_area .recaptchatable #recaptcha_response_field {
    width: 163px !important; }
  #recaptcha_area #recaptcha_logo {
    display: none; }
  #recaptcha_area #recaptcha_image #recaptcha_challenge_image {
    display: block;
    width: 160px;
    height: 55px; }
  #recaptcha_area .recaptcha_input_area input#recaptcha_response_field {
    -webkit-box-shadow: 0, 10px, 3px, #d6d6d6, inset;
    box-shadow: 0, 10px, 3px, #d6d6d6, inset;
    border: 1px solid #ebebeb !important;
    background-color: #eeeeee;
    padding-left: 7px;
    height: 30px;
    font-style: italic; }

#janrainModalOverlay {
  opacity: 0.8 !important;
  cursor: default; }

.janrain-modal__wrapper {
  cursor: default; }

#janrainModal {
  max-width: 92%;
  /* Fallback if Unsupported */
  max-width: -webkit-calc(100% - 30px);
  /* Chrome 19+ & Safari */
  max-width: -moz-calc(100% - 30px);
  /* Firefox v4-15 */
  max-width: calc(100% - 30px);
  background-color: #ffffff;
  height: auto !important;
  width: 100% !important;
  min-width: 290px;
  top: 0 !important;
  left: 15px !important;
  right: 15px;
  margin: 0 auto;
  cursor: auto;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-backface-visibility: hidden;
  /*transition: margin-top linear 0.5s;*/ }
  #janrainModal a {
    text-decoration: none; }
  @media screen and (min-width: 640px) {
    #janrainModal {
      max-width: 550px;
      width: 550px !important;
      margin: 0 auto 10px; } }
  @media screen and (min-width: 640px) {
    #janrainModal .narrow-item-wrapper {
      width: 50%;
      margin: 0 auto; } }
  #janrainModal .janrain-footer__link.signIn-RegisterButton {
    border-top: 1px solid #ebebeb; }
    @media screen and (min-width: 640px) {
      #janrainModal .janrain-footer__link.signIn-RegisterButton {
        border-top: none; } }
  #janrainModal #captureRetrievingUserDataBuiltIn {
    text-align: center;
    position: relative;
    margin: 150px auto;
    max-width: 400px;
    padding: 0;
    top: inherit;
    left: inherit;
    width: 100%; }
    #janrainModal #captureRetrievingUserDataBuiltIn .capture_retrieving {
      position: absolute;
      bottom: 0;
      width: 90%;
      padding: 20px; }
  #janrainModal input::-webkit-input-placeholder {
    text-transform: capitalize;
    color: #999999; }
  #janrainModal input::-moz-placeholder {
    text-transform: capitalize;
    color: #999999; }
  #janrainModal input:-moz-placeholder {
    text-transform: capitalize;
    color: #999999; }
  #janrainModal input:-ms-input-placeholder {
    text-transform: capitalize;
    color: #999999; }

#capture_editProfile_login_widget .janrainContent {
  min-height: 80px;
  max-width: 150px;
  margin: 0 auto; }
  #capture_editProfile_login_widget .janrainContent div {
    max-width: 100%; }

#janrainProviderPages {
  max-width: 150px; }
  #janrainProviderPages .janrainPage {
    text-align: center; }

/**
 * JANRAIN LEGACY STYLES
 */
.janrain-modal a {
  color: #1e1e1e;
  text-decoration: none; }
.janrain-modal label {
  display: none; }
.janrain-modal__form-button {
  margin-top: 30px; }
  .janrain-modal__form-button .capture_save_success {
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    line-height: 2.6rem;
    font-weight: 400;
    color: #80c75d; }
  .janrain-modal__form-button input[disabled] + .capture_save_success {
    display: none; }
.janrain-modal .capture_provider_linked {
  margin-bottom: 20px; }
.janrain-modal .capture_text_input, .janrain-modal .janrain-profile__form label.label-email, .janrain-profile__form .janrain-modal label.label-email {
  border: 1px solid #ebebeb;
  background-color: #F5F5F5;
  border-radius: 0;
  width: 100%;
  display: block;
  height: 35px;
  padding-left: 10px;
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 26px;
  line-height: 2.6rem;
  font-weight: 400;
  -webkit-appearance: none;
  -webkit-border-radius: 0; }
.janrain-modal .capture_mergeProvider {
  margin-right: 5px; }
.janrain-modal .capture_input_checkbox {
  display: none; }
  .janrain-modal .capture_input_checkbox + .custom-checkbox:before {
    border: 1px solid #ebebeb;
    color: #80c75d !important;
    cursor: pointer;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px; }
.janrain-modal .capture_btn {
  border-radius: 0;
  border: none;
  margin: 0;
  display: block;
  width: 100%;
  margin-bottom: 5px;
  padding: 0;
  text-transform: uppercase;
  text-align: center; }
  .janrain-modal .capture_btn.capture_traditionalSignIn_createButton {
    font-family: "montserratregular", sans-serif;
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 40px;
    line-height: 4rem;
    background-color: transparent;
    color: #111111;
    height: inherit;
    text-transform: none; }
.janrain-modal .capture_tip {
  margin: 0 0 0 10px;
  font-style: italic;
  font-size: 12px;
  font-size: 1.2rem;
  color: #666666;
  padding: 5px 0; }
  .janrain-modal .capture_tip_validating {
    display: none; }
  .janrain-modal .capture_tip_error {
    color: #ff0000;
    font-size: 12px;
    font-size: 1.2rem;
    float: left;
    padding-left: 5px; }
.janrain-modal .capture_checkbox {
  padding: 10px;
  position: relative; }
  .janrain-modal .capture_checkbox.capture_form_item_inner_jpCommsOptIn {
    background-color: #ffffff;
    border: 1px solid #ebebeb; }
  .janrain-modal .capture_checkbox label {
    display: block;
    font-weight: 300;
    cursor: pointer;
    font-size: 14px;
    max-height: none; }
  .janrain-modal .capture_checkbox .custom-checkbox {
    background-color: #ffffff;
    bottom: 12px;
    cursor: pointer;
    position: absolute;
    right: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .janrain-modal .capture_checkbox--janrain-newsletter, .janrain-modal .capture_checkbox--janrain-merge {
    background-color: #F5F5F5;
    border: 1px solid #ebebeb;
    padding: 7px 10px; }
    .janrain-modal .capture_checkbox--janrain-newsletter .custom-checkbox, .janrain-modal .capture_checkbox--janrain-merge .custom-checkbox {
      position: relative;
      bottom: 0;
      right: 0;
      float: left;
      margin-right: 15px; }
  .janrain-modal .capture_checkbox__profile-check {
    display: inline-block; }
    .janrain-modal .capture_checkbox__profile-check label {
      max-height: none; }
.janrain-modal .capture_form #capture_traditionalAuthenticateMerge_tradAuthenticateMergeForm_errorMessages_error .capture_form_error {
  padding: 0; }
.janrain-modal .capture_form_error {
  font-size: 13px;
  font-size: 1.3rem;
  color: #ff0000;
  text-align: center;
  padding: 0 0 8px 0; }
.janrain-modal .capture_form_item {
  min-height: 46px;
  margin-bottom: 10px; }
  .janrain-modal .capture_form_item:last-child {
    min-height: 0;
    margin-bottom: 0; }
  .janrain-modal .capture_form_item p {
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666666;
    font-style: italic;
    margin-top: 5px;
    padding: 0 10px; }
.janrain-modal--merge-social .capture_smallText {
  display: block;
  font-size: 11px;
  font-size: 1.1rem; }
.janrain-modal--profile-signIn {
  position: absolute;
  left: 50%;
  top: 40%;
  margin: 0 -140px;
  width: 280px;
  text-align: center; }
  @media screen and (min-width: 960px) {
    .janrain-modal--profile-signIn {
      margin: 0 -110px; } }

#profileContentWhenLoggedOut {
  background-color: white;
  text-align: center;
  position: relative;
  min-height: 37.7vh; }
  @media screen and (min-width: 640px) {
    #profileContentWhenLoggedOut {
      min-height: 47.7vh; } }

#janrainCaptureWidget {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000; }

#captureRetrievingUserDataBuiltIn {
  text-align: center;
  position: absolute;
  z-index: 1000;
  top: 150px;
  left: 50%;
  margin: 0 -130px;
  width: 260px;
  background-color: #fff;
  padding: 20px; }
  @media screen and (min-width: 481px) {
    #captureRetrievingUserDataBuiltIn {
      width: 380px;
      margin: 0 -190px; } }
  @media screen and (min-width: 960px) {
    #captureRetrievingUserDataBuiltIn {
      top: 40%; } }
  #captureRetrievingUserDataBuiltIn .capture_retrieving {
    position: relative; }
    #captureRetrievingUserDataBuiltIn .capture_retrieving:after {
      content: '';
      display: block;
      width: 24px;
      height: 24px;
      background-image: url("/assets/images/janrain/form-spinner.gif");
      margin: 0 auto;
      margin-top: 25px; }

#returnTraditional .janrain-column.janrain-column--left #capture_returnTraditional_login_widget {
  min-height: 80px; }
#returnTraditional .janrain-column.janrain-column--left .capture_centerText.switchLink.jrForgot {
  display: none; }

#signIn .janrain-column.janrain-column--left .janrainContent {
  min-height: 80px; }

#returnSocial .janrain-column.janrain-column--left #janrainAuthReturnExperience {
  height: 40px;
  min-height: 40px; }
#returnSocial .janrain-column.janrain-column--left .janrainContent {
  min-height: 40px; }

#capture_signIn_login_widget, #capture_returnTraditional_login_widget, #capture_returnSocial_login_widget {
  width: 100% !important;
  margin: 0 auto;
  overflow: hidden; }
  #capture_signIn_login_widget .janrainContent, #capture_returnTraditional_login_widget .janrainContent, #capture_returnSocial_login_widget .janrainContent {
    max-width: 150px;
    margin: 0 auto;
    overflow: visible !important; }
    #capture_signIn_login_widget .janrainContent--linked-accounts-heading_login_widget, #capture_returnTraditional_login_widget .janrainContent--linked-accounts-heading_login_widget, #capture_returnSocial_login_widget .janrainContent--linked-accounts-heading_login_widget {
      padding: 40px 0; }
    #capture_signIn_login_widget .janrainContent #janrainAuthReturnExperience, #capture_returnTraditional_login_widget .janrainContent #janrainAuthReturnExperience, #capture_returnSocial_login_widget .janrainContent #janrainAuthReturnExperience {
      margin: 0 -60px;
      min-height: 80px; }
      #capture_signIn_login_widget .janrainContent #janrainAuthReturnExperience a, #capture_returnTraditional_login_widget .janrainContent #janrainAuthReturnExperience a, #capture_returnSocial_login_widget .janrainContent #janrainAuthReturnExperience a {
        border: none !important; }

#linkedAccountsHeading {
  font-family: "montserratregular", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem; }

.container .janrain-profile .capture_provider_linked {
  background-color: #F5F5F5; }
.container .janrain-profile .capture_linkAccount {
  margin-top: 20px; }

.janrain-modal .capture_validated input,
.janrain-profile .capture_validated input {
  padding-right: 30px;
  background: url("/assets/images/janrain/form/valid_yes.png") center right no-repeat; }
.janrain-modal .capture_validated .capture_tip_error,
.janrain-profile .capture_validated .capture_tip_error {
  display: none; }
.janrain-modal .capture_error input,
.janrain-profile .capture_error input {
  padding-right: 30px;
  border-color: #ff0000;
  background: url("/assets/images/janrain/form/valid_no.png") center right no-repeat; }
.janrain-modal .capture_error .capture_tip_error,
.janrain-profile .capture_error .capture_tip_error {
  display: block;
  font-family: "open-sans", sans-serif;
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: 400; }
.janrain-modal .capture_focused .capture_tip_error,
.janrain-profile .capture_focused .capture_tip_error {
  display: none; }

.providers {
  /*width: 112px;*/
  margin: 0 auto !important; }
  .providers li[role="button"] {
    width: 32px;
    /*float: left;*/
    list-style: none;
    margin: 0 5px 5px 0;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block; }
  .providers #janrain-facebook {
    background-color: #3B5B99 !important; }
  .providers #janrain-twitter {
    background-color: #00ACED !important; }
  .providers #janrain-googleplus {
    background-color: #FFFFFF !important; }
  .providers #janrain-yahoo {
    background-color: #780099 !important; }
  .providers #janrain-amazon {
    background-color: #FFFFFF !important; }
  .providers #janrain-linkedin {
    background-color: #008cc9 !important; }
  .providers #janrain-live_id {
    background-color: #00A1F1 !important; }

.white_background_color {
  background-color: white !important; }

#signIn .janrain-column.janrain-column--left h3 {
  margin-top: 0px; }
#signIn .janrain-column.janrain-column--right h3 {
  margin-top: 1.6rem; }
  @media screen and (min-width: 640px) {
    #signIn .janrain-column.janrain-column--right h3 {
      margin-top: 0px; } }
#signIn .janrain-content__header {
  text-align: center; }

.janrain_modal_closebutton {
  font-size: 30px;
  font-size: 3rem;
  position: absolute;
  cursor: pointer;
  z-index: 1000;
  top: 6px;
  right: 18px;
  color: #111111;
  font-weight: 300; }

#capture_forgotPassword_forgotPasswordForm_errorMessages,
#capture_returnTraditional_userInformationForm_errorMessages,
#capture_changePassword_newPasswordFormProfile_errorMessages,
#capture_returnSocial_userInformationForm_errorMessages {
  margin-top: 15px; }
  #capture_forgotPassword_forgotPasswordForm_errorMessages .capture_form_error,
  #capture_returnTraditional_userInformationForm_errorMessages .capture_form_error,
  #capture_changePassword_newPasswordFormProfile_errorMessages .capture_form_error,
  #capture_returnSocial_userInformationForm_errorMessages .capture_form_error {
    padding: 0; }

#capture_publicProfileModal_memberSince,
#capture_publicProfileModal_public_gender,
#capture_publicProfileModal_public_name {
  margin-bottom: 5px; }

.capture_errortype_linkerror {
  display: none; }

#capture_returnSocial_login_widget,
#capture_returnTraditional_login_widget {
  width: 100% !important; }

/* "Is this you?" screen */
@media screen and (min-width: 640px) {
  form#capture_traditionalAuthenticateMerge_tradAuthenticateMergeForm .janrain-content--bottom {
    padding-bottom: 0px; } }
form#capture_traditionalAuthenticateMerge_tradAuthenticateMergeForm .janrain-content__wrapper--narrow {
  width: 100%; }
@media screen and (min-width: 640px) {
  form#capture_traditionalAuthenticateMerge_tradAuthenticateMergeForm #capture_traditionalAuthenticateMerge_form_item_traditionalSignIn_emailAddress {
    float: left;
    width: 50%;
    padding-right: 2rem; } }
form#capture_traditionalAuthenticateMerge_tradAuthenticateMergeForm #capture_traditionalAuthenticateMerge_form_item_traditionalSignIn_emailAddress {
  width: 100%;
  padding-right: 0px; }
  @media screen and (min-width: 640px) {
    form#capture_traditionalAuthenticateMerge_tradAuthenticateMergeForm #capture_traditionalAuthenticateMerge_form_item_traditionalSignIn_emailAddress {
      float: left;
      width: 50%;
      padding-right: 2rem; } }
form#capture_traditionalAuthenticateMerge_tradAuthenticateMergeForm #capture_traditionalAuthenticateMerge_form_item_mergePassword {
  width: 100%;
  padding-right: 0px; }
  @media screen and (min-width: 640px) {
    form#capture_traditionalAuthenticateMerge_tradAuthenticateMergeForm #capture_traditionalAuthenticateMerge_form_item_mergePassword {
      float: left;
      width: 50%;
      padding-left: 2rem; } }

/*
*
*
* Profile
*/
.janrain-profile {
  overflow: hidden; }
  .janrain-profile input.janrain-profile__button--disabled {
    color: #ccc;
    background-color: #ebebeb;
    cursor: not-allowed; }
  @media screen and (min-width: 960px) {
    .janrain-profile {
      overflow: visible; } }
  .janrain-profile__header {
    background-color: #ffffff; }
  .janrain-profile__title {
    font-family: "jaf-bernina-sans-condensed", sans-serif;
    font-weight: 700;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 11px;
    line-height: 1.1rem;
    line-height: 1.1;
    color: rgba(34, 34, 34, 0.2);
    text-align: center;
    padding: 0.4rem 1rem;
    min-height: 20px;
    vertical-align: middle;
    text-align: left; }
    @media screen and (min-width: 960px) {
      .janrain-profile__title {
        font-family: "jaf-bernina-sans-condensed", sans-serif;
        font-weight: 700;
        font-size: 36px;
        font-size: 3.6rem;
        line-height: 52px;
        line-height: 5.2rem;
        padding: 0.4rem 1rem; } }
    @media screen and (min-width: 1300px) {
      .janrain-profile__title {
        padding: 0.4rem 1rem 0.4rem 2rem; } }
  .janrain-profile__aside {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 100%;
    padding-top: 20px; }
    @media screen and (min-width: 320px) {
      .janrain-profile__aside {
        padding-left: 10px;
        padding-right: 10px;
        width: 100%; } }
    @media screen and (min-width: 960px) {
      .janrain-profile__aside {
        padding-left: 10px;
        padding-right: 10px;
        width: 33.33333%; } }
    @media screen and (min-width: 1300px) {
      .janrain-profile__aside {
        padding-left: 10px;
        padding-right: 10px;
        width: 25%; } }
    @media screen and (max-width: 991px) {
      .janrain-profile__aside--right {
        display: none; } }
    @media screen and (min-width: 1300px) {
      .janrain-profile__aside--right {
        right: 0;
        top: 0;
        height: 100%; } }
  .janrain-profile__account-actions .janrain_traditional_account_only {
    display: none; }
  .janrain-profile__photo-mananger {
    text-align: center;
    border-bottom: 1px solid #ebebeb; }
    .janrain-profile__photo-mananger .options {
      font-family: "montserratregular", sans-serif;
      font-weight: 400;
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center;
      margin-top: 8px; }
      .janrain-profile__photo-mananger .options li {
        padding: 0;
        margin: 0;
        line-height: 1;
        position: relative; }
        .janrain-profile__photo-mananger .options li + li {
          margin-top: 5px; }
        .janrain-profile__photo-mananger .options li .capture_remove_photo_link {
          color: #ff0000; }
      .janrain-profile__photo-mananger .options a {
        font-size: 14px;
        font-size: 1.4rem;
        color: #222222;
        display: inline-block;
        text-decoration: none; }
  .janrain-profile__link-account h4 {
    margin: 18px auto 22px; }
  .janrain-profile__account-actions__a, .janrain-profile__link-account .capture_linkAccount a, .janrain-profile__account-actions a {
    font-family: "montserratregular", sans-serif;
    font-weight: 400;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 20px;
    line-height: 2rem;
    display: block;
    padding: 10px 0 10px 12px;
    text-decoration: none; }
  .janrain-profile__content {
    clear: both;
    margin: 0px 10px;
    padding-top: 20px; }
    @media screen and (min-width: 640px) {
      .janrain-profile__content {
        padding-left: 10px;
        padding-right: 10px;
        float: right;
        margin: 0 auto 20px;
        clear: none; } }
    @media screen and (min-width: 960px) {
      .janrain-profile__content {
        width: 66.6%;
        margin-bottom: 30px; } }
    @media screen and (min-width: 1300px) {
      .janrain-profile__content {
        width: 75%; } }
  .janrain-profile__form {
    background-color: #ffffff;
    margin: 0 auto;
    width: 100%;
    padding: 30px 0;
    padding-top: 0px; }
    @media screen and (min-width: 960px) {
      .janrain-profile__form {
        width: 90%;
        padding: 30px;
        padding-top: 0px; } }
    .janrain-profile__form .capture_text_input, .janrain-profile__form label.label-email,
    .janrain-profile__form .capture_select,
    .janrain-profile__form .capture_textarea {
      margin: 10px 0;
      padding: 0 10px;
      -webkit-appearance: none;
      -moz-appearance: none;
      border-radius: 0;
      -webkit-border-radius: 0;
      border: 1px solid #ebebeb;
      background-color: #F5F5F5;
      border-radius: 0;
      width: 100%;
      display: block;
      height: 35px;
      font-family: "open-sans", sans-serif;
      font-weight: normal;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 26px;
      line-height: 2.6rem;
      font-weight: 400;
      -webkit-appearance: none;
      -webkit-border-radius: 0; }
      .janrain-profile__form .capture_text_input option:first-child, .janrain-profile__form label.label-email option:first-child,
      .janrain-profile__form .capture_select option:first-child,
      .janrain-profile__form .capture_textarea option:first-child {
        display: none; }
    .janrain-profile__form .capture_select {
      background: url("/assets/images/janrain/form/arrow-down-form-space.png") right center no-repeat #fff;
      cursor: pointer; }
    .janrain-profile__form textarea.capture_textarea {
      resize: vertical;
      min-height: 100px;
      padding: 10px; }
    .janrain-profile__form label {
      font-family: "montserratregular", sans-serif;
      font-weight: 400;
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 24px;
      line-height: 2.4rem;
      max-height: 48px;
      overflow: hidden;
      width: 100%;
      margin-top: 10px;
      margin-bottom: 0;
      display: inline-block;
      max-width: 100%;
      font-weight: bold; }
      .janrain-profile__form label.label-email {
        padding-top: 3px;
        margin-bottom: 0px; }
    .janrain-profile__form .capture_select_arrow {
      border: 1px solid #cccccc;
      overflow: hidden;
      width: 100%;
      display: inline-block;
      position: relative;
      background: url("/assets/images/janrain/form/arrow-down-form-space.png") right -10px center no-repeat #F5F5F5;
      margin: 10px 0 5px 0;
      /*
      &:before {
        content: "";
        display: block;
        background: transparent;
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 26px;
      }
      */ }
      .janrain-profile__form .capture_select_arrow select::-ms-expand {
        display: none; }
      .janrain-profile__form .capture_select_arrow .capture_select {
        border: none;
        height: 35px;
        padding: 0 30px 0 10px;
        /*@include calc-mix(width, '100% + 32px', 120%);*/
        width: 100%;
        color: #000;
        margin: 0;
        outline: none;
        background-image: none;
        background: transparent; }
        .janrain-profile__form .capture_select_arrow .capture_select::-ms-expand {
          display: none; }
      .janrain-profile__form .capture_select_arrow .capture_disabled {
        color: #999999; }
        .janrain-profile__form .capture_select_arrow .capture_disabled option {
          color: #111111; }
  .janrain-profile .capture_provider {
    list-style: none;
    padding: 0;
    margin: 0; }
    .janrain-profile .capture_provider_linked {
      background-color: #ffffff;
      padding: 10px;
      margin: 0 0 10px; }
      .janrain-profile .capture_provider_linked [class^="janrain-provider-icon-"] {
        margin-top: 0;
        padding-top: 0;
        margin-left: 6px; }
      .janrain-profile .capture_provider_linked [class^="janrain-provider-text-"] {
        font-family: "montserratregular", sans-serif;
        font-weight: 400;
        font-size: 15px;
        font-size: 1.5rem;
        margin-left: 10px; }
  .janrain-profile .capture_form_item {
    position: relative; }
  .janrain-profile .capture_resendLink {
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    line-height: 2.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-decoration: none; }
  .janrain-profile .capture_nameBlock {
    margin-bottom: 15px; }
  .janrain-profile .capture_tip {
    display: none;
    font-size: 12px;
    font-size: 1.2rem; }
    .janrain-profile .capture_tip_validating {
      display: none; }
    .janrain-profile .capture_tip_error {
      display: none; }
  .janrain-profile .capture_error .capture_tip {
    display: none; }
  .janrain-profile .capture_error .capture_tip_error {
    display: block;
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    line-height: 2rem;
    font-weight: 400;
    color: #ff0000;
    margin-top: -5px;
    margin-bottom: 5px; }
  .janrain-profile .capture_error .capture_validated .capture_tip_error {
    display: none; }
  .janrain-profile .capture_focused .capture_tip_error {
    display: none; }
  .janrain-profile .capture_validated .capture_tip_error {
    display: none; }
  .janrain-profile .capture_focused .capture_tip {
    display: block; }
  .janrain-profile .capture_dateselectBlock {
    margin-bottom: 20px; }
    .janrain-profile .capture_dateselectBlock .capture_select_arrow {
      margin: 10px 10px 10px 0; }
      @media screen and (min-width: 1300px) {
        .janrain-profile .capture_dateselectBlock .capture_select_arrow {
          width: 31%;
          /* Fallback if Unsupported */
          width: -webkit-calc((100% - 20px)/3);
          /* Chrome 19+ & Safari */
          width: -moz-calc((100% - 20px)/3);
          /* Firefox v4-15 */
          width: calc((100% - 20px)/3); } }
      .janrain-profile .capture_dateselectBlock .capture_select_arrow:nth-child(4) {
        margin-right: 0; }
  .janrain-profile .capture_remove_linkedaccount {
    float: right;
    font-size: 10px;
    line-height: 20px;
    padding: 0 5px;
    cursor: pointer; }
  .janrain-profile .capture_display_toggle_wrap {
    position: absolute;
    top: 12px;
    right: 0; }
  .janrain-profile .capture_display_toggle {
    cursor: pointer; }
    .janrain-profile .capture_display_toggle:not(.capture_display_toggle_disabled):hover {
      color: #f4bb46; }
    .janrain-profile .capture_display_toggle:not(.capture_toggled) {
      display: none; }
    .janrain-profile .capture_display_toggle .capture_display_label {
      display: none; }
  .janrain-profile .capture_display_toggle_options {
    border: 1px solid #ebebeb;
    display: none;
    position: absolute;
    top: 0;
    width: 120px;
    margin-top: -20px;
    margin-right: 10px;
    right: 100%; }
    @media screen and (min-width: 960px) {
      .janrain-profile .capture_display_toggle_options {
        margin-top: -15px;
        margin-right: 5px; } }
    .janrain-profile .capture_display_toggle_options .capture_display_option {
      clear: both;
      padding: 5px;
      overflow: hidden;
      background: white;
      cursor: pointer; }
      .janrain-profile .capture_display_toggle_options .capture_display_option:hover {
        background: #ffffff; }
      .janrain-profile .capture_display_toggle_options .capture_display_option + .capture_display_option {
        border-top: 1px solid #ebebeb; }
    .janrain-profile .capture_display_toggle_options .capture_display_label {
      display: block;
      float: right;
      text-align: left;
      width: 64px; }
    .janrain-profile .capture_display_toggle_options .janrain-icon-unlocked,
    .janrain-profile .capture_display_toggle_options .janrain-icon-locked {
      float: left;
      width: 20px; }
    .janrain-profile .capture_display_toggle_options .janrain-icon-check {
      float: right;
      width: 20px; }
    .janrain-profile .capture_display_toggle_options .capture_display_option:not(.capture_checked) .janrain-icon-check:before {
      content: "";
      height: 100%;
      display: inline-block; }
  .janrain-profile .capture_display_toggle_disabled {
    opacity: 0.25; }
  .janrain-profile .janrain-icon-16:before {
    vertical-align: middle; }
  .janrain-profile .capture_tip_validating {
    display: none; }

#capture_editProfile_form_item_inner_jpCommsOptIn .custom-checkbox:before {
  display: block !important; }

.ie9 .janrain-profile__form .capture_select_arrow .capture_select {
  width: 120%;
  /* Fallback if Unsupported */
  width: -webkit-calc(100% + 50px);
  /* Chrome 19+ & Safari */
  width: -moz-calc(100% + 50px);
  /* Firefox v4-15 */
  width: calc(100% + 50px); }

.capture_profile_pic.capture_default {
  background: url("/assets/images/janrain/edit-profile/default-avatar.png") center center no-repeat #111111;
  background-size: contain; }
.capture_profile_pic_display {
  max-width: 106px;
  max-height: 106px;
  height: auto;
  margin: 0 auto; }
  .capture_profile_pic_display img {
    width: 100%; }
  @media screen and (min-width: 640px) {
    .capture_profile_pic_display {
      max-width: 200px;
      max-height: 200px; } }
  .capture_profile_pic_display.capture_default {
    min-height: 106px; }
    @media screen and (min-width: 640px) {
      .capture_profile_pic_display.capture_default {
        min-height: 200px; } }
.capture_profile_pic_upload {
  width: 106px;
  height: 106px;
  line-height: 106px;
  float: left;
  margin-right: 20px; }
  .capture_profile_pic_upload .capture_photoManager_profile_pic_image_upload {
    max-width: 100%;
    vertical-align: middle; }
  .capture_profile_pic_upload.capture_default {
    min-height: 106px; }

.public-profile-modal .janrain-column__left {
  width: 106px;
  height: 106px;
  float: none;
  margin: 0 auto;
  margin-bottom: 20px; }
  @media screen and (min-width: 640px) {
    .public-profile-modal .janrain-column__left {
      float: left; } }
.public-profile-modal .janrain-column__right {
  float: none;
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem; }
  @media screen and (min-width: 640px) {
    .public-profile-modal .janrain-column__right {
      width: 76%;
      float: right; } }
.public-profile-modal .capture_public_name span,
.public-profile-modal p {
  word-wrap: break-word;
  display: inline-block;
  max-width: 100%; }

.janrain-modal--registration-new-verification {
  font-size: 14px;
  font-size: 1.4rem; }
  .janrain-modal--registration-new-verification .janrain-user-picture--register-photo {
    max-width: 106px;
    margin: 0 auto;
    margin-bottom: 10px;
    height: 106px;
    display: block; }
.janrain-modal--profile-photo-manager .capture_uploadPhoto_container {
  float: left;
  width: 100%;
  padding-left: 120px;
  margin-top: -93px; }
  @media screen and (min-width: 640px) {
    .janrain-modal--profile-photo-manager .capture_uploadPhoto_container {
      margin-top: -70px; } }
  .janrain-modal--profile-photo-manager .capture_uploadPhoto_container .capture_photo_chooser {
    display: none; }
  .janrain-modal--profile-photo-manager .capture_uploadPhoto_container .capture_photo_chooser_label {
    cursor: pointer;
    position: relative;
    display: block;
    width: 100%;
    height: 66px;
    background-color: white;
    border: none;
    outline: none;
    vertical-align: middle;
    padding: 5px;
    margin-top: -13px;
    margin-bottom: 0; }
    @media screen and (min-width: 640px) {
      .janrain-modal--profile-photo-manager .capture_uploadPhoto_container .capture_photo_chooser_label {
        float: left;
        width: 70%;
        height: 40px;
        margin-top: 0;
        padding: 9px; } }
    .janrain-modal--profile-photo-manager .capture_uploadPhoto_container .capture_photo_chooser_label b {
      background: #bbbbbb;
      margin-right: 10px;
      font-size: 1.4rem;
      display: block;
      line-height: 30px;
      width: 100%;
      height: 30px;
      margin-bottom: 5px;
      text-align: center;
      font-weight: 600; }
      @media screen and (min-width: 640px) {
        .janrain-modal--profile-photo-manager .capture_uploadPhoto_container .capture_photo_chooser_label b {
          position: absolute;
          top: 5px;
          left: 5px;
          bottom: 5px;
          width: 110px;
          height: auto;
          margin-bottom: 0; } }
    .janrain-modal--profile-photo-manager .capture_uploadPhoto_container .capture_photo_chooser_label span {
      overflow: hidden;
      white-space: nowrap;
      line-height: 22px;
      text-overflow: ellipsis;
      font-size: 14px;
      width: 100%;
      text-align: center;
      display: block;
      height: 22px;
      font-weight: 400; }
      @media screen and (min-width: 640px) {
        .janrain-modal--profile-photo-manager .capture_uploadPhoto_container .capture_photo_chooser_label span {
          position: absolute;
          top: 5px;
          left: 125px;
          right: 10px;
          bottom: 5px;
          line-height: 30px;
          width: auto;
          height: auto;
          text-align: left; } }
    .janrain-modal--profile-photo-manager .capture_uploadPhoto_container .capture_photo_chooser_label:hover b {
      background: #cccccc; }
  .janrain-modal--profile-photo-manager .capture_uploadPhoto_container .capture_footer {
    width: 100%; }
    @media screen and (min-width: 640px) {
      .janrain-modal--profile-photo-manager .capture_uploadPhoto_container .capture_footer {
        width: 30%;
        float: left; } }

.capture_editProfile_remove_photo_contain {
  border: 1px solid #ebebeb;
  position: absolute;
  background-color: white;
  width: 100%;
  z-index: 9;
  padding: 10px;
  bottom: 23px; }
  @media screen and (min-width: 960px) {
    .capture_editProfile_remove_photo_contain {
      top: 30px;
      bottom: auto; } }
  .capture_editProfile_remove_photo_contain .capture_popup-arrow {
    position: absolute;
    overflow: hidden;
    z-index: 10;
    height: 10px;
    width: 20px;
    left: 50%;
    margin-left: -10px;
    bottom: -10px; }
    @media screen and (min-width: 960px) {
      .capture_editProfile_remove_photo_contain .capture_popup-arrow {
        top: -10px;
        bottom: auto; } }
    .capture_editProfile_remove_photo_contain .capture_popup-arrow:before {
      display: block;
      content: '';
      position: absolute;
      background-color: #F5F5F5;
      border: 1px solid #ebebeb;
      height: 20px;
      width: 20px;
      top: -13px;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
      @media screen and (min-width: 960px) {
        .capture_editProfile_remove_photo_contain .capture_popup-arrow:before {
          top: 3px; } }
  .capture_editProfile_remove_photo_contain p {
    font-size: 14px;
    line-height: 1;
    margin: 0 0 10px; }
  .capture_editProfile_remove_photo_contain a.capture_editProfile_confirm_remove_photo_link {
    color: red; }
  .capture_editProfile_remove_photo_contain a + a {
    margin-left: 15px; }

/**
 * JANRAIN NEWSLETTER
 */
.janrain-newsletter__list {
  padding: 0;
  margin: 0; }
  .janrain-newsletter__list-item {
    margin: 6px 0;
    list-style: none; }

.janrain-tooltip {
  position: absolute;
  z-index: 9;
  background-color: #F5F5F5;
  border: 1px solid #ccc;
  padding: 10px;
  bottom: 30px;
  font-size: 13px;
  font-size: 1.3rem; }
  .janrain-tooltip__arrow {
    position: absolute;
    overflow: hidden;
    z-index: 10;
    height: 10px;
    width: 20px; }
    .janrain-tooltip__arrow--top {
      top: -10px;
      left: 50%;
      margin: 0 -10px; }
    .janrain-tooltip__arrow--bottom {
      bottom: -10px;
      left: 10%;
      margin: 0 -10px;
      transform: rotate(180deg); }
    .janrain-tooltip__arrow:before {
      display: block;
      content: '';
      position: absolute;
      background-color: #F5F5F5;
      border: 1px solid #ccc;
      height: 20px;
      width: 20px;
      top: 3px;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }

.janrain-popup {
  position: relative; }
  .janrain-popup--more-info {
    margin: 10px 0;
    text-align: left; }
  .janrain-popup__link {
    cursor: help;
    font-family: "montserratlight", sans-serif;
    font-weight: 300; }
    .janrain-popup__link:hover + .janrain-popup__tooltip {
      display: block; }
  .janrain-popup__tooltip {
    display: none; }

.janrain-provider {
  margin-bottom: 10px; }
  .janrain-provider:before, .janrain-provider:after {
    content: " ";
    display: table; }
  .janrain-provider:after {
    clear: both; }
  .janrain-provider__details {
    font-size: 14px;
    font-size: 1.4rem;
    float: left;
    width: 155px;
    word-wrap: break-word; }
  .janrain-provider__name {
    font-size: 12px;
    font-size: 1.2rem; }
  .janrain-provider__title {
    text-transform: capitalize; }
  .janrain-provider__created {
    font-size: 12px;
    font-size: 1.2rem;
    clear: both;
    color: #666666;
    padding: 6px 0; }
  .janrain-provider__photo {
    background-image: url("/assets/images/janrain/user-default.png");
    background-size: cover;
    float: right;
    width: 75px;
    height: 75px; }
    .janrain-provider__photo .capture_icon_col img {
      float: right;
      width: 75px;
      height: 75px; }

#janrainProviderPages .providers li,
#janrainAuthReturnExperience .providers li,
#mergeAccounts .providers li,
#traditionalAuthenticateMerge .providers li,
#editProfile .providers li {
  width: 32px !important;
  height: 32px !important;
  float: none !important; }
#janrainProviderPages [class^="janrain-provider-icon-"],
#janrainProviderPages [class*=" janrain-provider-icon-"],
#janrainAuthReturnExperience [class^="janrain-provider-icon-"],
#janrainAuthReturnExperience [class*=" janrain-provider-icon-"],
#mergeAccounts [class^="janrain-provider-icon-"],
#mergeAccounts [class*=" janrain-provider-icon-"],
#traditionalAuthenticateMerge [class^="janrain-provider-icon-"],
#traditionalAuthenticateMerge [class*=" janrain-provider-icon-"],
#editProfile [class^="janrain-provider-icon-"],
#editProfile [class*=" janrain-provider-icon-"] {
  background-image: none !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(enabled=false)";
  color: #ffffff;
  text-align: center;
  border-radius: 0;
  position: relative; }
  #janrainProviderPages [class^="janrain-provider-icon-"]:before,
  #janrainProviderPages [class*=" janrain-provider-icon-"]:before,
  #janrainAuthReturnExperience [class^="janrain-provider-icon-"]:before,
  #janrainAuthReturnExperience [class*=" janrain-provider-icon-"]:before,
  #mergeAccounts [class^="janrain-provider-icon-"]:before,
  #mergeAccounts [class*=" janrain-provider-icon-"]:before,
  #traditionalAuthenticateMerge [class^="janrain-provider-icon-"]:before,
  #traditionalAuthenticateMerge [class*=" janrain-provider-icon-"]:before,
  #editProfile [class^="janrain-provider-icon-"]:before,
  #editProfile [class*=" janrain-provider-icon-"]:before {
    vertical-align: middle; }
  #janrainProviderPages [class^="janrain-provider-icon-"] span,
  #janrainProviderPages [class*=" janrain-provider-icon-"] span,
  #janrainAuthReturnExperience [class^="janrain-provider-icon-"] span,
  #janrainAuthReturnExperience [class*=" janrain-provider-icon-"] span,
  #mergeAccounts [class^="janrain-provider-icon-"] span,
  #mergeAccounts [class*=" janrain-provider-icon-"] span,
  #traditionalAuthenticateMerge [class^="janrain-provider-icon-"] span,
  #traditionalAuthenticateMerge [class*=" janrain-provider-icon-"] span,
  #editProfile [class^="janrain-provider-icon-"] span,
  #editProfile [class*=" janrain-provider-icon-"] span {
    display: none; }
#janrainProviderPages .janrain-provider-icon-32,
#janrainAuthReturnExperience .janrain-provider-icon-32,
#mergeAccounts .janrain-provider-icon-32,
#traditionalAuthenticateMerge .janrain-provider-icon-32,
#editProfile .janrain-provider-icon-32 {
  width: 32px;
  height: 32px;
  font-size: 21px; }
  #janrainProviderPages .janrain-provider-icon-32:before,
  #janrainAuthReturnExperience .janrain-provider-icon-32:before,
  #mergeAccounts .janrain-provider-icon-32:before,
  #traditionalAuthenticateMerge .janrain-provider-icon-32:before,
  #editProfile .janrain-provider-icon-32:before {
    line-height: 32px; }
#janrainProviderPages .janrain-provider-icon-24,
#janrainAuthReturnExperience .janrain-provider-icon-24,
#mergeAccounts .janrain-provider-icon-24,
#traditionalAuthenticateMerge .janrain-provider-icon-24,
#editProfile .janrain-provider-icon-24 {
  width: 24px;
  height: 24px;
  font-size: 16px; }
  #janrainProviderPages .janrain-provider-icon-24:before,
  #janrainAuthReturnExperience .janrain-provider-icon-24:before,
  #mergeAccounts .janrain-provider-icon-24:before,
  #traditionalAuthenticateMerge .janrain-provider-icon-24:before,
  #editProfile .janrain-provider-icon-24:before {
    line-height: 24px; }
#janrainProviderPages .janrain-provider-icon-16,
#janrainAuthReturnExperience .janrain-provider-icon-16,
#mergeAccounts .janrain-provider-icon-16,
#traditionalAuthenticateMerge .janrain-provider-icon-16,
#editProfile .janrain-provider-icon-16 {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 12px; }
  #janrainProviderPages .janrain-provider-icon-16:before,
  #janrainAuthReturnExperience .janrain-provider-icon-16:before,
  #mergeAccounts .janrain-provider-icon-16:before,
  #traditionalAuthenticateMerge .janrain-provider-icon-16:before,
  #editProfile .janrain-provider-icon-16:before {
    line-height: 20px; }
  #janrainProviderPages .janrain-provider-icon-16.capture_mergeProvider,
  #janrainAuthReturnExperience .janrain-provider-icon-16.capture_mergeProvider,
  #mergeAccounts .janrain-provider-icon-16.capture_mergeProvider,
  #traditionalAuthenticateMerge .janrain-provider-icon-16.capture_mergeProvider,
  #editProfile .janrain-provider-icon-16.capture_mergeProvider {
    line-height: normal; }
#janrainProviderPages .janrain-provider-icon-bg:hover:after,
#janrainAuthReturnExperience .janrain-provider-icon-bg:hover:after,
#mergeAccounts .janrain-provider-icon-bg:hover:after,
#traditionalAuthenticateMerge .janrain-provider-icon-bg:hover:after,
#editProfile .janrain-provider-icon-bg:hover:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.15); }
#janrainProviderPages .janrain-provider-icon-facebook,
#janrainAuthReturnExperience .janrain-provider-icon-facebook,
#mergeAccounts .janrain-provider-icon-facebook,
#traditionalAuthenticateMerge .janrain-provider-icon-facebook,
#editProfile .janrain-provider-icon-facebook {
  background-color: #3B5B99;
  color: #ffffff; }
#janrainProviderPages .janrain-provider-icon-twitter,
#janrainAuthReturnExperience .janrain-provider-icon-twitter,
#mergeAccounts .janrain-provider-icon-twitter,
#traditionalAuthenticateMerge .janrain-provider-icon-twitter,
#editProfile .janrain-provider-icon-twitter {
  background-color: #00ACED;
  color: #ffffff; }
#janrainProviderPages .janrain-provider-icon-googleplus,
#janrainAuthReturnExperience .janrain-provider-icon-googleplus,
#mergeAccounts .janrain-provider-icon-googleplus,
#traditionalAuthenticateMerge .janrain-provider-icon-googleplus,
#editProfile .janrain-provider-icon-googleplus {
  background-color: #D54D43;
  color: #ffffff; }
  #janrainProviderPages .janrain-provider-icon-googleplus:before,
  #janrainAuthReturnExperience .janrain-provider-icon-googleplus:before,
  #mergeAccounts .janrain-provider-icon-googleplus:before,
  #traditionalAuthenticateMerge .janrain-provider-icon-googleplus:before,
  #editProfile .janrain-provider-icon-googleplus:before {
    font-size: larger; }
#janrainProviderPages .janrain-provider-icon-yahoo,
#janrainAuthReturnExperience .janrain-provider-icon-yahoo,
#mergeAccounts .janrain-provider-icon-yahoo,
#traditionalAuthenticateMerge .janrain-provider-icon-yahoo,
#editProfile .janrain-provider-icon-yahoo {
  background-color: #780099;
  color: #ffffff; }
#janrainProviderPages .janrain-provider-icon-amazon,
#janrainAuthReturnExperience .janrain-provider-icon-amazon,
#mergeAccounts .janrain-provider-icon-amazon,
#traditionalAuthenticateMerge .janrain-provider-icon-amazon,
#editProfile .janrain-provider-icon-amazon {
  background-color: #ffffff;
  color: #222222; }
#janrainProviderPages .janrain-provider-icon-email,
#janrainAuthReturnExperience .janrain-provider-icon-email,
#mergeAccounts .janrain-provider-icon-email,
#traditionalAuthenticateMerge .janrain-provider-icon-email,
#editProfile .janrain-provider-icon-email {
  background-color: #111111;
  color: #ffffff; }
#janrainProviderPages .janrain-provider-icon-linkedin,
#janrainAuthReturnExperience .janrain-provider-icon-linkedin,
#mergeAccounts .janrain-provider-icon-linkedin,
#traditionalAuthenticateMerge .janrain-provider-icon-linkedin,
#editProfile .janrain-provider-icon-linkedin {
  background-color: #008cc9;
  color: #ffffff; }
#janrainProviderPages .janrain-provider-icon-live_id,
#janrainAuthReturnExperience .janrain-provider-icon-live_id,
#mergeAccounts .janrain-provider-icon-live_id,
#traditionalAuthenticateMerge .janrain-provider-icon-live_id,
#editProfile .janrain-provider-icon-live_id {
  background-color: #00A1F1;
  color: #ffffff; }

.janrain-modal__page--displayed {
  overflow: hidden; }
  .janrain-modal__page--displayed .janrain-modal__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    overflow: auto;
    cursor: default; }

.header__my-account {
  display: none; }

iframe.public-notices {
  float: left;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  width: 100%;
  max-height: 100%;
  display: block;
  background-color: white;
  float: none; }
  iframe.public-notices:before, iframe.public-notices:after {
    content: " ";
    display: table; }
  iframe.public-notices:after {
    clear: both; }
  @media screen and (min-width: 320px) {
    iframe.public-notices {
      padding-left: 10px;
      padding-right: 10px;
      width: 100%; } }
  @media screen and (min-width: 320px) {
    iframe.public-notices {
      padding-left: 0;
      padding-right: 0; } }

.android iframe.public-notices {
  margin-bottom: 1rem; }

footer ul,
footer li {
  list-style-type: none;
  margin: 0;
  padding: 0; }
footer .slab__block {
  max-height: none; }

.slab--footer {
  margin: 0;
  padding: 0 0 2rem 0; }
  .slab--footer .slab__block {
    margin-bottom: 0px; }

.slab--footer .slab__inner:before {
  height: 0; }
@media (min-width: 320px) {
  .slab--footer .navigation__block {
    width: 100%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem; }
  .slab--footer .social__block {
    width: 100%;
    float: left;
    padding-left: 10px;
    padding-right: 10px; } }
@media (min-width: 640px) {
  .slab--footer .navigation__block {
    width: 100%;
    float: left;
    padding-left: 10px;
    padding-right: 10px; }
  .slab--footer .social__block {
    width: 100%;
    float: left;
    padding-left: 10px;
    padding-right: 10px; } }
@media (min-width: 960px) {
  .slab--footer .navigation__block {
    width: 66.66667%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    border-top: none;
    margin-top: 0; }
  .slab--footer .social__block {
    width: 25%;
    float: left;
    padding-left: 10px;
    padding-right: 10px; } }
.slab--footer .main--links {
  float: left;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  width: 100%;
  float: left;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 320px) {
    .slab--footer .main--links {
      padding-left: 0;
      padding-right: 0;
      width: 100%; } }
  @media screen and (min-width: 640px) {
    .slab--footer .main--links {
      padding-left: 0;
      padding-right: 0;
      width: 25%; } }
.slab--footer .more--links {
  float: left;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  width: 100%;
  float: left;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 320px) {
    .slab--footer .more--links {
      padding-left: 0;
      padding-right: 0;
      width: 100%; } }
  @media screen and (min-width: 640px) {
    .slab--footer .more--links {
      padding-left: 0;
      padding-right: 0;
      width: 50%; } }
  .slab--footer .more--links li {
    float: left;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    width: 50%; }
    @media screen and (min-width: 320px) {
      .slab--footer .more--links li {
        padding-left: 0;
        padding-right: 0;
        width: 50%; } }
.slab--footer .useful--links {
  float: left;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  width: 100%;
  float: left;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 320px) {
    .slab--footer .useful--links {
      padding-left: 0;
      padding-right: 0;
      width: 100%; } }
  @media screen and (min-width: 640px) {
    .slab--footer .useful--links {
      padding-left: 0;
      padding-right: 0;
      width: 25%; } }
.slab--footer .slab__block {
  max-height: none; }
.slab--footer li {
  float: left;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  width: 0%;
  float: left;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 50%;
  margin-bottom: 0.6rem; }
  @media screen and (min-width: 320px) {
    .slab--footer li {
      padding-left: 0;
      padding-right: 0;
      width: 50%; } }
  @media screen and (min-width: 640px) {
    .slab--footer li {
      padding-left: 0;
      padding-right: 0;
      width: 100%; } }

.social__block {
  float: right !important; }
.social--links {
  float: left;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 320px) {
    .social--links {
      text-align: center; } }
  @media screen and (min-width: 960px) {
    .social--links {
      text-align: left; } }
  .social--links ul {
    display: inline-block; }
  .social--links li {
    float: left;
    margin: 0 2rem 0 0;
    width: 4.2rem;
    height: 4.2rem; }
    .social--links li:last-child {
      margin-right: 0; }
  .social--links .icon {
    display: inline-block;
    width: 4.2rem;
    height: 4.2rem; }
  .social--links a {
    text-decoration: none;
    color: white;
    display: inline-block;
    height: 4.2rem; }
    .social--links a:link, .social--links a:visited, .social--links a:active {
      text-decoration: none; }
      .social--links a:link .icon, .social--links a:visited .icon, .social--links a:active .icon {
        fill: rgba(255, 255, 255, 0.5); }
    .social--links a:hover .icon {
      fill: white; }

.newsletter--block {
  float: left;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  .newsletter--block .txt {
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    line-height: 3rem;
    background-color: #fff;
    border: none;
    color: rgba(0, 0, 0, 0.5);
    height: 30px;
    margin: 0 0 15px;
    outline: none;
    overflow: hidden;
    padding: 0px 6px;
    display: inline-block; }
    .newsletter--block .txt:hover {
      cursor: pointer; }
  .newsletter--block a.submit {
    font-family: "open-sans", sans-serif;
    font-weight: normal;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    line-height: 3rem;
    background: #1CB1BB;
    border: none;
    color: #fff;
    height: 30px;
    padding: 0px;
    display: inline-block;
    text-align: center; }
    .newsletter--block a.submit:hover, .newsletter--block a.submit:link, .newsletter--block a.submit:visited, .newsletter--block a.submit:active {
      color: white; }
  .newsletter--block #subscribeNLWidgetLoggedIn .submit {
    float: none; }
  @media screen and (min-width: 320px) {
    .newsletter--block {
      text-align: center; }
      .newsletter--block .block--title {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem; }
      .newsletter--block .txt, .newsletter--block .submit {
        text-align: center;
        display: block;
        margin: 0px auto;
        width: 100%; }
      .newsletter--block .submit {
        margin-top: .6rem; } }
  @media screen and (min-width: 640px) {
    .newsletter--block .txt, .newsletter--block .submit {
      width: 50%;
      display: inline-block;
      margin: 0px;
      vertical-align: top; }
    .newsletter--block .txt {
      text-align: left; }
    .newsletter--block .submit {
      max-width: 150px; } }
  @media screen and (min-width: 960px) {
    .newsletter--block {
      text-align: left; }
      .newsletter--block .block--title {
        border-top: none;
        padding-top: 0rem; }
      .newsletter--block .txt {
        width: 60%; }
      .newsletter--block .submit {
        width: 40%; } }

.slab--legal {
  margin: 0rem;
  padding: 2rem 0rem; }
  .slab--legal .slab__block {
    margin-bottom: 0px; }

.slab--legal .slab__inner .slab__block {
  width: 100%; }
.slab--legal .nav-commercial__list-item:nth-of-type(1) a {
  margin-left: 0; }
.slab--legal .nav-commercial__list-item:last-of-type a {
  margin-right: 0; }
.slab--legal a {
  margin: 0rem 0.6rem;
  text-decoration: none; }
.slab--legal p,
.slab--legal ul,
.slab--legal li {
  margin: 0px;
  padding: 0px;
  display: inline;
  vertical-align: top; }
@media screen and (min-width: 320px) {
  .slab--legal ul {
    display: block; } }
@media screen and (min-width: 960px) {
  .slab--legal ul {
    display: inline; } }

.wallpaper-responsive {
  -webkit-tap-highlight-color: transparent; }
  .wallpaper-responsive .slab {
    cursor: auto; }
    .wallpaper-responsive .slab__inner, .wallpaper-responsive .slab--topic, .wallpaper-responsive .slab--leaderboard, .wallpaper-responsive .slab--bottommobilebanner, .wallpaper-responsive .slab--enterpriseandpartnerships, .wallpaper-responsive .slab--wowbrand, .wallpaper-responsive .slab--commercialverticals, .wallpaper-responsive .slab--lifestyle {
      background: transparent;
      background-color: transparent; }
      .wallpaper-responsive .slab__inner .slab__inner, .wallpaper-responsive .slab__inner .ad-gpt, .wallpaper-responsive .slab--topic .slab__inner, .wallpaper-responsive .slab--topic .ad-gpt, .wallpaper-responsive .slab--leaderboard .slab__inner, .wallpaper-responsive .slab--leaderboard .ad-gpt, .wallpaper-responsive .slab--bottommobilebanner .slab__inner, .wallpaper-responsive .slab--bottommobilebanner .ad-gpt, .wallpaper-responsive .slab--enterpriseandpartnerships .slab__inner, .wallpaper-responsive .slab--enterpriseandpartnerships .ad-gpt, .wallpaper-responsive .slab--wowbrand .slab__inner, .wallpaper-responsive .slab--wowbrand .ad-gpt, .wallpaper-responsive .slab--commercialverticals .slab__inner, .wallpaper-responsive .slab--commercialverticals .ad-gpt, .wallpaper-responsive .slab--lifestyle .slab__inner, .wallpaper-responsive .slab--lifestyle .ad-gpt {
        background: transparent;
        background-color: transparent; }
    .wallpaper-responsive .slab--topic .slab__inner {
      margin-bottom: 2rem;
      border: 0px; }
    .wallpaper-responsive .slab--topic .editorialzone-list__list-item.topic-native-content .editorial-teaser:hover {
      background-color: #f4f4f4; }
    .wallpaper-responsive .slab--title .topic-hub--title {
      background-color: rgba(34, 34, 34, 0.3);
      padding: 0rem 1rem;
      color: #ffffff; }
  .wallpaper-responsive #main,
  .wallpaper-responsive .content-bodySlot,
  .wallpaper-responsive .slab.slab--leaderboard {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0; }
    @media screen and (min-width: 640px) {
      .wallpaper-responsive #main,
      .wallpaper-responsive .content-bodySlot,
      .wallpaper-responsive .slab.slab--leaderboard {
        max-width: 640px; } }
    @media screen and (min-width: 768px) {
      .wallpaper-responsive #main,
      .wallpaper-responsive .content-bodySlot,
      .wallpaper-responsive .slab.slab--leaderboard {
        max-width: 768px; } }
    @media screen and (min-width: 960px) {
      .wallpaper-responsive #main,
      .wallpaper-responsive .content-bodySlot,
      .wallpaper-responsive .slab.slab--leaderboard {
        max-width: 960px; } }
  @media screen and (min-width: 1300px) {
    .wallpaper-responsive #main,
    .wallpaper-responsive .content-bodySlot {
      max-width: 1280px; } }
  .wallpaper-responsive .content-bodySlot {
    margin-left: auto;
    margin-right: auto; }
  @media screen and (min-width: 1300px) {
    .wallpaper-responsive .slab.slab--leaderboard {
      max-width: 992px; } }
  .wallpaper-responsive .editorial-vertical-teaser,
  .wallpaper-responsive .editorial-teaser {
    background-color: white; }
  .wallpaper-responsive section .slab.slab--blended {
    margin-top: 0; }
  .wallpaper-responsive .dy-editorial-wow .dy_wow_widget_header {
    color: #ffffff;
    background-color: rgba(34, 34, 34, 0.3); }
    .wallpaper-responsive .dy-editorial-wow .dy_wow_widget_header .dy_unit {
      margin-bottom: 20px;
      margin-top: 20px;
      width: 100%; }
      .wallpaper-responsive .dy-editorial-wow .dy_wow_widget_header .dy_unit h2 {
        margin: 0;
        color: #ffffff; }

.color-scheme--york.wallpaper-responsive .slab__nav-listitem, .color-scheme--blue.wallpaper-responsive .slab__nav-listitem, .color-scheme--red.wallpaper-responsive .slab__nav-listitem {
  background-color: rgba(34, 34, 34, 0.3);
  padding: 0.3rem; }
.color-scheme--york.wallpaper-responsive .slab__title, .color-scheme--blue.wallpaper-responsive .slab__title, .color-scheme--red.wallpaper-responsive .slab__title {
  font-size: 2rem;
  line-height: 1.3;
  color: white;
  font-weight: 700; }
.color-scheme--york.wallpaper-responsive .slab__title-link, .color-scheme--blue.wallpaper-responsive .slab__title-link, .color-scheme--red.wallpaper-responsive .slab__title-link {
  padding: .4rem;
  line-height: 2.7rem; }
.color-scheme--york.wallpaper-responsive .slab__nav-list, .color-scheme--blue.wallpaper-responsive .slab__nav-list, .color-scheme--red.wallpaper-responsive .slab__nav-list {
  border-bottom-color: rgba(34, 34, 34, 0.3); }

.color-scheme--blue.wallpaper-responsive .slab__nav-listitem, .color-scheme--red.wallpaper-responsive .slab__nav-listitem {
  background-color: rgba(34, 34, 34, 0.5); }
.color-scheme--blue.wallpaper-responsive .slab__nav-list, .color-scheme--red.wallpaper-responsive .slab__nav-list {
  border-bottom-color: rgba(34, 34, 34, 0.5); }
.color-scheme--blue.wallpaper-responsive .dy-editorial-wow .dy_wow_widget_header, .color-scheme--red.wallpaper-responsive .dy-editorial-wow .dy_wow_widget_header {
  background-color: rgba(34, 34, 34, 0.5); }

.color-scheme--scot.wallpaper-responsive .dy_wow_widget_header {
  background-color: #222222; }



/*# sourceMappingURL=yep-core.css.map */
