/**
 * @file component.scss
 *   This is your main style sheet. It should be readable by a human and
 *   heavily commented. Each component and its elements and modifiers should be
 *   logically grouped and seperated by a comment describing the component, how
 *   it interacts with other components, and how it can be modified.
 */
/**
 * Modifying bootstrap default components.
 */
.jumbotron {
  background-color: #f7f7f7;
  background-image: url(../img/bg-hex.png);
  background-position: 100px center;
  background-repeat: no-repeat;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  margin-top: 30px;
  padding-top: 36px;
  padding-bottom: 36px; }
  .jumbotron p {
    color: #666666;
    font-size: 1.8rem;
    font-weight: 400; }
  .jumbotron h2 {
    color: #919191; }
  .jumbotron.jumbotron__alt-background {
    background-image: url(../img/bg-hex-alt.png);
    background-position: right center; }

.alt-background__transparent {
  background-image: url(../img/bg-hex-alt.png);
  background-position: 100% -13%;
  background-repeat: no-repeat;
  border-top: 1px solid #d4d4d4; }

/*.btn {
  border: none;
  border-radius: 0;
  font-size: 2rem;
  padding: 20px 56px;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -webkit-transition: background-color 0.25s ease; }
  @media (min-width: 768px) {
    .btn {
      font-size: 1.5rem; } }
  @media (min-width: 992px) {
    .btn {
      font-size: 2rem; } }
  .btn.btn-default {
    background-color: #da291c;
    color: white; }
    .btn.btn-default:hover {
      background-color: #ad2116; }
  .btn.btn-gray {
    background-color: #919191;
    color: white; }
    .btn.btn-gray:hover {
      background-color: #6b6b6b; }
  .btn.btn-lg {
    font-size: 2.4rem;
    padding: 26px 64px; }
  .btn.btn-sm {
    font-size: 1.6rem;
    padding: 16px 36px; }
  .btn.btn-xs {
    font-size: 1.4rem;
    padding: 7px 16px; }
*/

/**
 * New nav type: Secondary. Secondary navs should be used with the `.nav` and
 * `.nav-stacked` classes. They have a slash at the beginning and are blue on
 * hover.
 */
.nav.nav-stacked.nav__secondary li a {
  margin-left: 10px;
  padding: 6px 0;
  text-indent: -10px;
  transition: color 0.25s ease;
  -moz-transition: color 0.25s ease;
  -webkit-transition: color 0.25s ease; }
  .nav.nav-stacked.nav__secondary li a:before {
    color: #00aec7;
    content: "\02f\020"; }
.nav.nav-stacked.nav__secondary li:hover a {
  background-color: transparent;
  color: #00aec7; }
.nav.nav-stacked.nav__secondary li.active a {
  color: #00aec7; }
.nav.nav-stacked.nav__secondary li ul {
  list-style-type: none;
  color: inherit; }
  .nav.nav-stacked.nav__secondary li ul li {
    color: inherit; }
    .nav.nav-stacked.nav__secondary li ul li a {
      color: inherit; }

/**
 * Another nav type: Secondary - Alternate version. Should be used with the `.nav` and
 * `.nav-stacked` classes. They are dark gray and turn red with underline on hover. Used as filters
 */
.nav__secondary__alt a {
  color: #333; }
.nav__secondary__alt li > a:hover, .nav__secondary__alt li > a:focus {
  background-color: transparent;
  color: #da291c; }
.nav__secondary__alt li > a {
  padding: 2px 15px; }
.nav__secondary__alt li:first-child > a {
  padding-top: 15px; }
.nav__secondary__alt li:last-child > a {
  padding-bottom: 30px; }

.nav__secondary__alt:last-child {
  margin-bottom: 120px; }

/**
 * Another nav type: used as a sub navigation on Landing pages. 
 * nav items are horizontal instead of stacked
 */
.nav__tertiary li > a {
  color: #797979;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 10px 30px 30px 30px;
  text-transform: uppercase; }
@media (min-width: 768px) {
  .nav__tertiary li {
    float: left; } }
.nav__tertiary li > a:hover, .nav__tertiary li > a:focus, .nav__tertiary li.active > a {
  background-color: transparent;
  color: #da291c; }
.nav__tertiary li.active > a:after {
  background-color: #00aec7; }
.nav__tertiary li > a:after {
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  margin-left: -14px;
  top: 73%;
  width: 82%;
  -webkit-transition: background-color 0.25s ease; }

/**
 * Navigation component is used for the main nav - heavily customized.
 */

/*  HIDE THESE */
/*
.navbar-default {
  background-color: transparent;
  border: none; }
  .navbar-default .navbar-nav > li {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase; }
    .navbar-default .navbar-nav > li > a {
      color: #da291c; }
      .navbar-default .navbar-nav > li > a:after {
        content: "";
        display: block;
        height: 3px;
        position: absolute;
        top: 100%;
        width: 78%;
        transition: background-color 0.25s ease;
        -moz-transition: background-color 0.25s ease;
        -webkit-transition: background-color 0.25s ease; }
      .navbar-default .navbar-nav > li > a:hover {
        color: #da291c; }
        .navbar-default .navbar-nav > li > a:hover:after {
          background-color: #da291c; }
    .navbar-default .navbar-nav > li.active > a {
      background-color: transparent;
      color: #da291c; }
      .navbar-default .navbar-nav > li.active > a:after {
        background-color: #00aec7; }
      .navbar-default .navbar-nav > li.active > a:hover {
        background-color: transparent;
        color: #da291c; }
  .navbar-default .navbar-nav > li > .dropdown-menu {
    border: none;
    border-radius: 0;
    font-size: 1.8rem;
    margin-top: -1px; }
    .navbar-default .navbar-nav > li > .dropdown-menu > li {
      text-transform: none; }
      .navbar-default .navbar-nav > li > .dropdown-menu > li > a {
        color: #da291c;
        padding: 10px 22px; }
    .navbar-default .navbar-nav > li > .dropdown-menu > .active > a,
    .navbar-default .navbar-nav > li > .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav > li > .dropdown-menu > .active > a:focus {
      background-color: #00aec7;
      color: white; }
  .navbar-default .navbar-nav .open a:focus {
    background-color: transparent;
    color: #da291c; }
  @media (max-width: 767px) {
    .navbar-default .navbar-nav li {
      text-align: center; }
      .navbar-default .navbar-nav li a:after {
        margin: 0 auto;
        width: 96%; } }
  .navbar-default .navbar-toggle {
    border-color: #da291c; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: transparent;
      border-color: #00aec7; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #da291c; }

.navbar-collapse {
  padding-left: 0;
  padding-right: 0; }
  @media (max-width: 767px) {
    .navbar-collapse {
      overflow-x: hidden; } }

*/


/**
 * Forms, we don't have much info in the way forms from the designs - so I
 * con't do much here.
 *
 * Update - form styles have been loosely communicated verbally. If you're
 * asked to update form styles again, please add to the tally below!

 * Tally:
 * |||
 */
.form-control {
  border-color: #da291c;
  border-radius: 0;
  color: #da291c; }
  .form-control:focus {
    border-color: #da291c; }
  .form-control::-webkit-input-placeholder {
    color: #919191; }
  .form-control:-moz-placeholder {
    color: #919191; }
  .form-control::-moz-placeholder {
    color: #919191; }
  .form-control:-ms-input-placeholder {
    color: #919191; }

.input-group-addon {
  background-color: #00aec7;
  border-color: #da291c;
  color: white; }

/**
 * Special style for slogan - not used elsewhere.
 */
.slogan {
  color: #797979;
  font-size: 1.7rem; }
  @media (min-width: 768px) {
    .slogan {
      font-size: 2rem; } }

/**
 * Nav tab heroes. Huge white tabs that together take up the full horizontal
 * width of their container. Must include the .nav and .nav-tabs classes too.
 */
.nav.nav-tabs.nav-tabs__hero {
  margin-bottom: 0; }
  .nav.nav-tabs.nav-tabs__hero > li > a {
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 1s ease;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease; }
    @media (min-width: 768px) {
      .nav.nav-tabs.nav-tabs__hero > li > a {
        border-width: 10px 0 0;
        border-top-color: transparent;
        border-top-style: solid;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        -moz-background-clip: padding-box;
        -webkit-background-clip: padding-box;
        background-clip: padding-box-box; } }
    @media (min-width: 768px) {
      .nav.nav-tabs.nav-tabs__hero > li > a {
        padding: 20px 20px 50px; } }
  @media (min-width: 768px) and (min-width: 992px) {
    .nav.nav-tabs.nav-tabs__hero > li > a {
      padding: 30px 30px 60px; } }

  @media (min-width: 768px) and (min-width: 992px) and (min-width: 1200px) {
    .nav.nav-tabs.nav-tabs__hero > li > a {
      padding: 48px 48px 70px; } }

  .nav.nav-tabs.nav-tabs__hero > li.active > a {
    background-color: white; }
    @media (min-width: 768px) {
      .nav.nav-tabs.nav-tabs__hero > li.active > a {
        border-width: 10px 0 0;
        border-top-color: white; } }
  .nav.nav-tabs.nav-tabs__hero p {
    color: #333;
    font-size: 1.6rem; }

/**
 * Hero tab content. These are usually accompanied by a set of tabs with the
 * nav-tabs__hero class. It makes the background white and makes some small
 * typography tweaks.
 */
.tab-content.tab-content__hero {
  background-color: white;
  font-size: 1.6rem;
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px; }
  @media (max-width: 767px) {
    .tab-content.tab-content__hero {
      padding-left: 15px;
      padding-right: 15px; } }

/**
 * Seperate from nav-tabs__hero's this is just another alternative to tab
 * styling.
 */
.nav.nav-tabs.nav-tabs__hero-alt {
  border-bottom-width: 0; }
  .nav.nav-tabs.nav-tabs__hero-alt > li {
    background-color: #e6e6e6;
    padding: 4px 12px; }
    @media (max-width: 767px) {
      .nav.nav-tabs.nav-tabs__hero-alt > li {
        width: 100%; } }
    .nav.nav-tabs.nav-tabs__hero-alt > li > a {
      background-color: #e6e6e6;
      border-radius: 0;
      border-width: 0 0 2px;
      font-size: 2.6rem;
      font-weight: 800;
      margin: 0;
      padding: 0 16px;
      text-transform: uppercase; }
    .nav.nav-tabs.nav-tabs__hero-alt > li.active {
      background-color: white; }
      .nav.nav-tabs.nav-tabs__hero-alt > li.active > a {
        background-color: white;
        border-bottom: 2px solid #00aec7;
        border-width: 0 0 2px;
        color: #da291c; }

/**
 * Similar to nav-tabs__hero-alt, this is seperate from tab-content__hero. Just
 * alternate way to do something very similar.
 */
.tab-content.tab-content__hero-alt {
  background-color: white;
  margin-bottom: 30px;
  padding: 30px; }

/**
 * Centered nav - makes tabs or pills centered
 */
.nav.nav-tabs.nav__centered,
.nav.nav-pills.nav__centered {
  text-align: center; }
  .nav.nav-tabs.nav__centered > li,
  .nav.nav-pills.nav__centered > li {
    display: inline-block;
    *display: inline;
    /* ie7 fix */
    float: none;
    zoom: 1;
    /* hasLayout ie7 trigger */ }

/**
 * Two-level pill navigation. This is pretty straight forward. Used in the
 * footer. Requires the nav and nav-pills classes.
 */
.nav.nav-pills.nav-pills__two-level {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .nav.nav-pills.nav-pills__two-level > li {
      clear: both;
      margin-top: 10px;
      text-align: center;
      width: 100%; } }
  @media (min-width: 768px) {
    .nav.nav-pills.nav-pills__two-level > li {
      width: 24%;
      padding-right: 40px; } }
  .nav.nav-pills.nav-pills__two-level > li > a {
    padding: 4px 0;
    text-transform: uppercase; }
    .nav.nav-pills.nav-pills__two-level > li > a:hover {
      background-color: transparent;
      text-decoration: underline; }
  .nav.nav-pills.nav-pills__two-level > li > ul {
    padding-left: 0; }
    .nav.nav-pills.nav-pills__two-level > li > ul > li {
      list-style: none; }
      .nav.nav-pills.nav-pills__two-level > li > ul > li > a {
        display: block;
        padding: 4px 0; }

/**
 * This is used on the front page only. It adds a bunch of padding to the top
 * and bottom and then moves the row__hero--left element down even further with
 * more padding.
 */
.row__hero {
  padding-top: 60px;
  padding-bottom: 50px; }
  .row__hero .row__hero--left {
    margin-top: 140px; }
    @media (max-width: 767px) {
      .row__hero .row__hero--left {
        margin-top: 0;
        text-align: center; } }
  .row__hero .row__hero--right {
    font-size: 1.6rem;
    background-color: rgba(255, 255, 255, 0.8);
    color: #666666;
    display: block;
    height: 261px;
    position: relative;
    text-align: center;
    width: 150px; }
    .row__hero .row__hero--right:before, .row__hero .row__hero--right:after {
      border-bottom-color: transparent;
      border-bottom-style: solid;
      border-bottom-width: 130.5px;
      border-top-color: transparent;
      border-top-style: solid;
      border-top-width: 130.5px;
      content: "";
      height: 0;
      position: absolute;
      top: 0px;
      width: 0; }
    .row__hero .row__hero--right:before {
      border-right-color: rgba(255, 255, 255, 0.8);
      border-right-style: solid;
      border-right-width: 75px;
      left: -75px; }
    .row__hero .row__hero--right:after {
      border-left-color: rgba(255, 255, 255, 0.8);
      border-left-style: solid;
      border-left-width: 75px;
      right: -75px; }
    .row__hero .row__hero--right > .hexagon--content {
      display: table-cell;
      height: 261px;
      font-size: 1em;
      vertical-align: middle; }
    @media (max-width: 767px) {
      .row__hero .row__hero--right {
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto; } }
    .row__hero .row__hero--right .cayan-old-logo {
      color: #d4d4d4;
      font-size: 4rem; }

.hexagon {
  background-color: rgba(255, 255, 255, 0.8); }

.container__stats {
  padding-top: 30px;
  padding-bottom: 30px;
  text-transform: uppercase; }
  @media (max-width: 991px) {
    .container__stats .container__stats--counter {
      clear: both; } }
  .container__stats .container__stats--counter .container__stats--counter--icon {
    line-height: 1;
    font-size: 6rem; }
  .container__stats .container__stats--counter .container__stats--counter--counter {
    font-size: 8rem;
    font-weight: 600;
    line-height: 1; }
    @media (min-width: 400px) {
      .container__stats .container__stats--counter .container__stats--counter--counter {
        font-size: 9rem; } }
  @media (min-width: 400px) and (min-width: 768px) {
    .container__stats .container__stats--counter .container__stats--counter--counter {
      font-size: 15rem; } }

  @media (min-width: 400px) and (min-width: 768px) and (min-width: 992px) {
    .container__stats .container__stats--counter .container__stats--counter--counter {
      font-size: 12rem; } }

  @media (min-width: 400px) and (min-width: 768px) and (min-width: 992px) and (min-width: 1200px) {
    .container__stats .container__stats--counter .container__stats--counter--counter {
      font-size: 15rem; } }

/**
 * Inline icon lists contain only font icons. We reduce the spacing and change
 * the hover effect.
 */
.list-inline.list-inline__icons {
  margin-left: 0; }
  .list-inline.list-inline__icons > li {
    padding-left: 0;
    padding-right: 0;
    font-size: 2.4rem; }
    .list-inline.list-inline__icons > li > a:hover {
      text-decoration: none; }
      .list-inline.list-inline__icons > li > a:hover i {
        background-color: white;
        border-radius: 50%;
        color: #da291c; }
    @media (min-width: 992px) {
      .list-inline.list-inline__icons > li {
        font-size: 3rem; } }

/**
 * Hexagons need both the parent hexagon class and at least one modifier.
 */
.hexagon {
  background-color: #00aec7;
  color: white;
  display: block;
  height: 104.4px;
  position: relative;
  text-align: center;
  width: 60px; }
  .hexagon:before, .hexagon:after {
    border-bottom-color: transparent;
    border-bottom-style: solid;
    border-bottom-width: 52.2px;
    border-top-color: transparent;
    border-top-style: solid;
    border-top-width: 52.2px;
    content: "";
    height: 0;
    position: absolute;
    top: 0px;
    width: 0; }
  .hexagon:before {
    border-right-color: #00aec7;
    border-right-style: solid;
    border-right-width: 30px;
    left: -30px; }
  .hexagon:after {
    border-left-color: #00aec7;
    border-left-style: solid;
    border-left-width: 30px;
    right: -30px; }
  .hexagon > .hexagon--content {
    display: table-cell;
    height: 104.4px;
    font-size: 1em;
    vertical-align: middle; }

/**
 * Slide out search. Modified from http://tympanus.net/codrops/2013/06/26/expanding-search-bar-deconstructed/
 */
.sb-search {
  position: relative;
  width: 0%;
  min-width: 30px;
  height: 30px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease; }

.sb-search-input {
  border-width: 0;
  font-family: inherit;
  height: 30px;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10; }

.sb-search-open .sb-search-input {
  border: 1px solid #da291c; }

.sb-search-input::-webkit-input-placeholder {
  color: #efb480; }

.sb-search-input:-moz-placeholder {
  color: #efb480; }

.sb-search-input::-moz-placeholder {
  color: #efb480; }

.sb-search-input:-ms-input-placeholder {
  color: #efb480; }

.sb-icon-search,
.sb-search-submit {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  line-height: 30px;
  text-align: center;
  cursor: pointer; }

.sb-search-submit {
  background: #fff;
  /* IE needs this */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* IE 8 */
  filter: alpha(opacity=0);
  /* IE 5-7 */
  opacity: 0;
  color: transparent;
  border: none;
  outline: none;
  z-index: -1; }

.sb-icon-search {
  color: #da291c;
  z-index: 90;
  font-size: 28px; }

/* Open state */
.sb-search.sb-search-open,
.no-js .sb-search {
  width: 100%; }

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
  z-index: 11; }

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
  z-index: 90; }

/**
 * alternate list style that has fancy bullets. We use bootstraps list-unstyled
 * class to take care of the alignment stuff first,
 */
ul.list-unstyled.list-unstyled__polygon {
  margin-left: 19px;
  margin-top: 10px; }
  ul.list-unstyled.list-unstyled__polygon > li {
    text-indent: -19px; }
    ul.list-unstyled.list-unstyled__polygon > li:before {
      color: #da291c;
      content: "\e60e";
      font-size: 10px;
      margin-right: 6px;
      font-family: 'cayan';
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      text-transform: none;
      speak: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }

ul {
  padding-left: 0;
  list-style: none;
  margin-left: 19px;
  margin-top: 10px; }
  ul > li {
    text-indent: -19px; }
    ul > li:before {
      color: #da291c;
      content: "\e60e";
      font-size: 10px;
      margin-right: 6px;
      font-family: 'cayan';
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      line-height: 1;
      text-transform: none;
      speak: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }

ul.nav {
  margin-left: 0; }

.nav ul,
.list-inline ul {
  margin-left: 0; }
.nav li,
.list-inline li {
  text-indent: 0; }
.nav li:before,
.list-inline li:before {
  content: '';
  display: none; }

.vertical--rule {
  border-left: 1px solid #d7d7d7; }

.padding-top {
  padding-top: 27px; }

.margin-bottom {
  margin-bottom: 30px; }

.date {
  color: #919191;
  font-size: 1.6rem;
  text-transform: uppercase; }

.vertical--rule__bg {
  background-image: url(../img/vertical-rule-shapes.png);
  background-position: bottom left;
  background-repeat: no-repeat; }

@media (min-width: 768px) {
  .vertical--rule__bg__top {
    background-image: url(../img/vertical-rule-shapes2.png);
    background-position: 100% 0%;
    background-repeat: no-repeat; } }

.yamm-content ul {
  list-style: none;
  margin-left: -18px; }

.yamm-content ul li a {
  display: block;
  font-weight: 400;
  font-size: 1.6rem;
  padding: 8px 0px; }

.banner {
  height: auto;
  position: relative;
  top: -95px;
  z-index: 10; }
  @media (min-width: 768px) {
    .banner {
      min-height: 500px;
      overflow: hidden; } }
  @media (min-width: 768px) {
    .banner h2 {
      color: #fff; } }
  .banner img {
    display: none;
    position: absolute; }
    @media (min-width: 768px) {
      .banner img {
        display: block; } }
    @media (min-width: 992px) {
      .banner img {
        left: -75%;
        top: -25%;
        width: 200%; } }

.animated-text {
  color: #666666;
  font-size: 2.3rem; }
  @media (min-width: 768px) {
    .animated-text {
      color: #fff;
      margin-top: 229px;
      width: 70%; } }
  @media (min-width: 992px) {
    .animated-text {
      margin-top: 186px;
      width: 50%; } }

.content__padding {
  padding: 20px; }
  @media (min-width: 768px) {
    .content__padding {
      padding: 3px 15px; } }
  @media (min-width: 992px) {
    .content__padding {
      padding: 84px 60px; } }

.panel {
  background: #fff;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-bottom: 70px;
  padding-top: 70px;
  position: relative;
  z-index: 1; }
  .panel img {
    max-width: 100%; }

.panel__bg {
  background-image: url(../img/panel-hex-bg.png);
  background-position: top center;
  background-repeat: no-repeat; }

.panel__bg__alt {
  background-image: url(../img/panel-hex-bg3.png);
  background-position: -14% -10%;
  background-repeat: no-repeat; }

.panel__bg__alt1 {
  border-top: 1px solid #d6d6d6;
  background-image: url(../img/panel-hex-bg2.png);
  background-position: top left;
  background-repeat: no-repeat; }

.panel__bg__alt2 {
  background-color: #f7f7f7;
  margin-bottom: 0px; }

/**
 * alternate tabs - vertical
 */
.tabs-left > .nav-tabs > li {
  float: left; }
  @media (min-width: 768px) {
    .tabs-left > .nav-tabs > li {
      float: none; } }

.tabs-left > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px; }

.tabs-left > .nav-tabs {
  border-bottom: 0px;
  margin-right: 19px;
  margin-top: 30px;
  width: 100%; }

.tabs-left > .nav-tabs > li > a {
  border: 0px;
  color: #797979;
  margin-right: -1px;
  text-transform: uppercase;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px; }

.tabs-left > .nav-tabs > li > a:after {
  content: " ";
  padding-left: 15px;
  background-image: url(../img/arrow-icon.png);
  background-repeat: no-repeat;
  background-position: center right; }

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:after,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus,
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  background-image: none;
  background-color: transparent;
  border: 0px;
  color: #da291c; }

.memberTopics {
  float: left;
  margin-right: 15px; }

/*# sourceMappingURL=component.css.map */
