@font-face {
    font-family: 'proxima_novabold';
    src: url('../fonts/proximanova-bold-webfont.eot');
    src: url('../fonts/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/proximanova-bold-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-bold-webfont.woff') format('woff'),
         url('../fonts/proximanova-bold-webfont.ttf') format('truetype'),
         url('../fonts/proximanova-bold-webfont.svg#proxima_novabold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_novaregular';
    src: url('../fonts/proximanova-regular-webfont.eot');
    src: url('../fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/proximanova-regular-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-regular-webfont.woff') format('woff'),
         url('../fonts/proximanova-regular-webfont.ttf') format('truetype'),
         url('../fonts/proximanova-regular-webfont.svg#proxima_novaregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_novasemibold';
    src: url('../fonts/proximanova-semibold-webfont.eot');
    src: url('../fonts/proximanova-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/proximanova-semibold-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-semibold-webfont.woff') format('woff'),
         url('../fonts/proximanova-semibold-webfont.ttf') format('truetype'),
         url('../fonts/proximanova-semibold-webfont.svg#proxima_novasemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}
html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "proxima_novaregular",sans-serif;
  margin: 0;
  padding: 0;
  color: #303130;
  background: #fff;
  font-size: 16px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
}
*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webit-box-sizing: border-box;
}
#chart * {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webit-box-sizing: content-box;
}
strong, b {
  font-family: 'proxima_novabold';
}
small {
  font-size: 90%;
}
input[type="submit"], button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* TEXT STYLES */
h1, h2, h3, h4, h5, h6 {
    font-family: 'proxima_novabold';
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 20px;
}
h1 {
  padding-bottom: 20px;
  border-bottom: 2px solid #d6d6d6;
}
h2 {
  font-size: 25px;
  line-height: 30px;
  margin:0 0 15px 0;
}

h3 {
  font-size: 22px;
  line-height: 25px;
  margin:0 0 10px 0;
}

h4 {
  font-size: 20px;
  line-height: 22px;
  margin:0 0 10px 0;
}

h5, h6 {
  font-size: 18px;
  line-height: 20px;
  margin:0 0 10px 0;
}
@media (max-width: 768px) {
    h1 {
        border-bottom: medium none;
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    h4, h5, h6 {
        font-size: 18px;
    }
}
a {
  color: #1997d3;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  transition: all 0.5s ease 0s;  
  outline: none;
}
a:hover {
  color: #c52030;
}

img {
  border: 0 none;
  max-width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ModulePressReleaseDetails ul, .ContentContainer ul {
    list-style: initial;
    padding-left: 10px;
}
/* CUSTOM STYLES */
 .clearfix:before,
.clearfix:after {
    content: "";
    display: table;
} 
.clearfix:after {
    clear: both;
}
.container {
    margin: 0 auto;
    max-width: 1340px;
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width: 480px) {
    .container {
      padding-left: 10px;
      padding-right: 10px;
  }
}

/* header */
.PaneHeader {
    background-color: #f63440;
    padding: 14px 0;
}
@media (max-width: 680px) {
    .PaneHeader {
        padding: 0;
        position: relative;
    }
}
.ClientLogo {
    float: left;
    padding-top: 3px;
}
.ClientLogo a {
    display: block;
}
.ClientLogo img {
    width: 140px;
    vertical-align: top;
}
.ClientLogo br {
    display: none;
}
.HtmlTextContainer.OrderNow {
    float: right;
    padding: 0;
}
.OrderNow a {
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 18px;
    padding: 5px 10px;
    font-family: "proxima_novabold";
}
@media (max-width: 680px) {
  .ClientLogo {
      width: 83px;
      margin: 0;
      padding: 0;
      position: absolute;
      top: 50%;
      margin-top: -9px;
      left: 50%;
      margin-left: -41px;
  }
  .OrderNow a {
      font-size: 15px;
      padding: 0 5px;
      margin: 10px 0;
  }
}
.navbar-header {
  display: none;
}
a.navbar-toggle {
    display: block;
    font-size: 24px;
    line-height: 46px;
    padding-left: 10px;
    padding-right: 10px;
}
.navbar-toggle:after {
    color: #fff;
    content: "\e63e";
    font-family: "Q4-Default-Icons";
}
.navbar-toggle.x-bar {
    background-color: #a9222a;
}
/*.navbar-toggle.x-bar:after {
    color: #fff;
    content: "\e602";
    font-family: "Q4-Default-Icons";
    font-size: 20px;
}*/
.PaneNavigation {
     position: relative;
}
.HeaderImage {
    background-color: #861a21;
    background-image: url('../design/header_investors_en_new.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    width: 100%;
}
.HeaderImage:before {
    content: '';
    display: block;
    background: rgba(34,34,34,.3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.headerText {
    color: #fff;
    font-size: 40px;
    height: 300px;
    padding-top: 140px;
    text-align: center;
    top: 0;
    width: 100%;
    position: relative;
    z-index: 2;
    font-family: 'proxima_novabold';
}
@media (max-width: 768px) {
    .headerText {
        height: 180px;
        padding-top: 80px;
    }
}
@media (max-width: 680px) {
    .navbar-header {
        display: block;
        float: left;
        margin-left: -20px;
        height: 46px;
    }
    .headerText {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .navbar-header {
        margin-left: -10px;
    }
    .headerText {
        height: 130px;
        font-size: 23px;
        padding-top: 50px;
    }
}
.PaneHeader2 {
    background-color: #f9f9f9;
}

/*   Main nav */
.MainNav {
    margin-left: 21%;
}
.MainNav .level1 > li {
    float: left;
}
.MainNav .level1 .expanded a, .MobileNav .level1 .expanded a, .MainNav .level1 a:hover {
    color: #0091ff;
}
.MainNav .level1 a, .MobileNav .level1 a {
    color: #8a8a8a;
    display: block;
    font-family: "proxima_novabold";
    font-size: 18px;
    padding: 20px 40px;
}
.MainNav .level2, .MobileNav .level2 {
    display: none;
}
@media (max-width: 1024px) {
  .MainNav {
      margin: 0 auto;
      width: 680px;
  }
  .MainNav .level1 a {
      font-size: 18px;
      padding: 20px 30px;
  }
}
@media (max-width: 786px) {
    .MainNav {
        width: 640px;
    }
}
@media (max-width: 680px) {
  .MainNav {
      display: none;
  }
}

/*mobile nav*/
@media (max-width: 680px) {
    .nav-open .mobile-overlay {
        content: '';
        position: absolute;
        top: 46px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1000;
    }
}
.MobileNav {
    background-color: #F9F9F9;
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 46px;
    width: 100%;
    z-index: 1001;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 1px 1px 4px #ccc;
}
.MobileNav .level1 > li {
    float: none;
}
.MobileNav .level1 a {
    color: #333;
    display: block;
    font-size: 14px;
    padding: 5px 15px;
    transition: none;
    font-family: inherit;
    line-height: 34px;
}
.MobileNav .level1 a:hover {
    background: #3395FF;
    color: #fff;
    font-family: 'proxima_novabold';
}
@media (min-width: 680px) {
    .MobileNav {
        display: none !important;
    }
}

/* content  */
.LayoutDefaultInner {
    position: relative;
}
.PaneContentInner {
    padding-bottom: 50px;
    padding-top: 50px;
}
.PaneLeft {
    display: block;
    float: left;
    padding-right: 25px;
    width: 24%;
    position: relative;
}
.PaneRight {
    display: block;
    float: left;
    padding-right: 25px;
    width: 24%;
}
.LayoutTwoColumn .PaneRight {
    display: none;
}
.PaneContent {
    display: block;
    float: right;
    width: 76%;
    padding-right: 10%;
    padding-bottom: 10px;
}
.LayoutTwoColumn .PaneContent {
    float: none;
    width: 100%;
}
@media (max-width: 1220px) {
    .PaneContent {
      padding-right: 5%;
    }
}
@media (max-width: 1024px) {
  .PaneContent {
      padding-right: 0;
  }
}
@media (max-width: 1023px) {
  .PaneContentInner {
      padding-bottom: 35px;
      padding-top: 35px;
  }
  .PaneLeft {
      float: none;
      width: 100%;
      padding-right: 0;
  }
  .PaneRight {
      float: none;
      width: 100%;
      padding-right: 0;
  }
  .PaneContent {
      float: none;
      width: 100%;
  }
}

/* secondary nav  */
.Breadcrumb {
    border: 1px solid #acacac;
    border-radius: 5px;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 25px;
    padding: 15px;
    display: none;
    position: relative;
}
.Breadcrumb:after {
    content: "\e64a";
    font-family: "Q4-Default-Icons";
    font-size: 15px;
    position: absolute;
    right: 15px;
    top: 13px;
    color: #007AFF;
}
.Breadcrumb a {
    display: none;
}
.BreadcrumbSeparator {
    display: none;
}
.SecondaryNav.bs-sidenav {
    display: block;
}
.SecondaryNav .level1 > li > a {
    display: none;
}
.SecondaryNav .level1 .level2 > li a {
    color: #8a8a8a;
    display: inline-block;
    font-size: 17px;
    line-height: 34px;
    font-family: "proxima_novabold";
}
.SecondaryNav .level1 .level2 li.selected > a,
.SecondaryNav .level1 .level2 > li a:hover {
    color: #0091ff;
}
.SecondaryNav .level1 .level2 .level3 {
    padding-left: 20px;
    display: none;
}
.SecondaryNav .level1 .level2 li.expanded .level3, .SecondaryNav .level1 .level2 li.selected .level3 {
    display: block;
}
.SecondaryNav.SecondaryNavMobile .level1 .level2 a {
    color: #333;
    display: block;
    font-size: 14px;
    padding: 5px 15px;
    transition: none;
}
.SecondaryNav.SecondaryNavMobile .level1 .level2 a:hover {
    background: #3395FF;
    color: #fff;
    font-family: 'proxima_novabold';
}
.SecondaryNav.SecondaryNavMobile .level1 .level2 > li a {
    font-family: inherit;
}
.SecondaryNavMobile {
    display: none;
}
@media (max-width: 1023px) {
      .Breadcrumb {
        display: block;
      }
      .SecondaryNav.bs-sidenav {
          display: none;
      }
      .SecondaryNavMobile-active {
          display: block;
      }
      .SecondaryNavMobile {
          background-color: #f9f9f9;
          box-shadow: 0 2px 0 0 #000;
          position: absolute;
          top: 57px;
          width: 100%;
          z-index: 100;
          border-bottom-right-radius: 5px;
          border-bottom-left-radius: 5px;
          box-shadow: 1px 1px 4px #ccc;
      }
      .SecondaryNavMobile .level2 a {
          display: block;
          font-size: 15px;
          padding-bottom: 5px;
          padding-top: 5px;
      }
}

/* content */
.HtmlTextContainer {
    padding-bottom: 20px;
}
.RssIcon {
  display: none;
}
.RssLinkTop:after {
    color: #ed9f01;
    content: "\e642";
    font-family: "Q4-Default-Icons";
    font-size: 22px;
    line-height: 27px;
}
.iframe-responsive {
    margin-bottom: 50px;
    padding-bottom: 62.5%;
    position: relative;
    overflow: hidden;
}
.iframe-responsive iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* media left pane modules */
.ContactIRGlobal {
    background-color: #f8a81e;
    border-radius: 5px;
    color: #fff;
    margin-top: 30px;
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 28px;
}
.ContactIRGlobal h1 {
    border-bottom: medium none;
    padding-bottom: 0;
}
.ContactIRGlobal .ContentContainer a {
    color: #fff;
}
.media-email {
    background-color: #f8a81e;
    border-radius: 5px;
    color: #fff;
    margin-top: 15px;
    padding: 28px 22px 45px;
    position: relative;
}
.media-email h1 {
    border-bottom: 1px solid #fff;
}
.media-email .MailingListTable .MailingListCol1 {
    display: none;
}
.media-email .MailingListTable .MailingListCol2 > input {
    box-shadow: 0 2px 0 0 #966613;
    color: #8e9193;
    font-size: 11px;
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100% !important;
}
.media-email .RequiredField {
    display: none;
}
.media-email .MailingListListTable .MailingListsHeading {
    display: none;
}
.media-email .Button.ActionButton {
  width: 100%;
}
.PaneRight .MailingListSignupContainer .ErrorContainer {
    bottom: 0;
    font-size: 14px;
    left: 22px;
    padding-bottom: 2px;
    position: absolute;
    z-index: 100;
}
.PaneRight .MailingListSignupContainer {
  position: relative;
}
@media (max-width: 1023px) {
      .PaneLeft {
          padding-bottom: 20px;
      }
      .ContactIRGlobal {
          display: inline-block;
          margin-top: 0;
          padding-top: 10px;
          padding-bottom: 105px;
          vertical-align: top;
          width: 30%;
      }
      .ContactIRGlobal .ContentContainer a {
          display: block;
      }
      .PaneRight .MailingListSignupContainer {
          display: inline-block;
          margin-top: 0;
          width: 69%;
      }
      .media-email {
          margin-top: 0;
          padding: 10px 22px 15px;
          height: 230px;
      }
      .media-email h1 {
          border-bottom: medium none;
          margin-bottom: 0;
      }
}
@media (max-width: 640px) {
      .ContactIRGlobal {
          display: block;
          margin-bottom: 10px;
          padding-bottom: 5px;
          width: 100%;
      }
      .PaneRight .MailingListSignupContainer {
          width: 100%;
      }
}
/* home */
.ModuleEvent .RssLinkTopContainer, .RegulatoryFilingContainer .RssLinkTopContainer {
    position: relative;
}
.ModuleEvent .RssLinkTop:after, .RegulatoryFilingContainer .RssLinkTop:after {
    left: -20px;
    position: absolute;
    top: -70px;
}
.LatestNewsLanding {
    margin-bottom: 20px;
}
.LatestNewsLanding .ModuleDate, .ModulePressRelease .ModuleDate, .ModuleEvent .ModuleDate {
    color: #8e9193;
    display: block;
    font-size: 12px;
}
.LatestNewsLanding .ModuleHeadlineLink, .ModulePressRelease .ModuleHeadlineLink, .ModuleEvent .ModuleHeadlineLink {
    color: #303130;
    font-size: 19px;
}
.LatestNewsLanding .ModuleItemRow, .ModuleEvent .ModuleItemRow, .ModulePressRelease .ModuleItemRow {
    border: 2px solid #e3e3e3;
    border-radius: 5px;
    margin-bottom: 10px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-top: 15px;
}
.LatestNewsLanding .ModuleItemRow:hover, .ModuleEvent .ModuleItemRow:hover, .ModulePressRelease .ModuleItemRow:hover {
    border: 2px solid #eb9da4;
}
.ModuleEvent .ModuleYearNavContainer {
    padding-bottom: 10px;
    padding-left: 30px;
}
.ModuleEvent .ModuleYearLink.selected {
    color: #c52030;
}
.EventsLanding .ModuleYearNavContainer {
    display: none;
}
.ModuleEvent .YearSeparator:first-child {
    display: none;
}
.ModuleEvent .ModuleBody {
  display: none;
}
.ModuleEvent .ModuleSpeakers h3 {
    color: #8e9193;
    display: inline-block;
    font-family: "proxima_novaregular";
    font-size: 15px;
    height: 100%;
    line-height: 23px;
    margin: 0;
    vertical-align: top;
}
.ModuleEventDetails .ModuleSpeakers h3 {
    color: #8e9193;
    font-family: "proxima_novasemibold";
    font-size: 20px;
}
.ModuleEvent .ModuleSpeakers ul {
    color: #8e9193;
    display: inline-block;
    font-size: 15px;
}
.ModuleEvent .ModuleLocation, .ModuleEventDetails .ModuleLocation {
    color: #8e9193;
    display: block;
    font-size: 15px;
}
.ModuleEventDetails .ModuleLocation {
    font-size: 20px;
}
.ModuleEventDetails .ModuleSpeakers ul {
    color: #8e9193;
    margin-bottom: 10px;
}
.ModuleSpeakers ul li span:first-child {
    margin-right: -5px;
}
.RelatedDocuments .FinancialReport .CoverImagePane {
    display: none;
}
.RelatedDocuments .FinancialReport .FinancialContainer > h3 {
    display: none;
}
.RelatedDocuments .FinancialReport .thumbnail {
    display: none;
}
.RelatedDocuments .FinancialReport .icon {
    display: none;
}
.RelatedDocuments .FinancialReport .category {
    display: none;
}
.ReportFile {
    color: #8e9193;
    font-size: 15px;
}
.EventsLanding .ModuleDate {
    display: none;
}
.WebcastLink .ModuleFileLink:before {
    color: #cc2333;
    content: "\e647";
    font-family: "Q4-Default-Icons";
    padding-right: 10px;
}
.WebcastLink .ModuleFileLink {
    color: #8e9193;
    font-size: 15px;
}
.LatestNewsLanding .ModuleFooter, .EventsLanding .ModuleFooter {
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: right;
}
.LatestNewsLanding .ModuleViewAllLink, .EventsLanding .ModuleViewAllLink {
    background-color: #3395FF;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    font-family: 'proxima_novabold';
}
.ModuleEvent .ModuleTime {
    color: #8e9193;
    font-size: 12px;
}
.ModuleEvent .ModuleFile, .ModuleLinks .Document .ModuleFile, .PressRelease .ModuleFileLink.PressReleaseLink {
    color: #8e9193;
    font-size: 15px;
}
.PressRelease .ModuleFileLink.PressReleaseLink:before {
    color: #cc2333;
    content: "\e628";
    font-family: "Q4-Default-Icons";
    padding-right: 10px;
}
.ModuleEvent .ModuleFile:before, .ModuleLinks .Document .ModuleFile:before, .RelatedDocuments .FinancialReport .ReportFile:before, .RelatedFinancial .ReportFile:before {
    color: #cc2333;
    content: "\e62a";
    font-family: "Q4-Default-Icons";
    padding-right: 10px;
}
.ModuleEvent.upcomingEvents .ModuleFile:before, .ModuleLinks .Document .ModuleFile:before, .RelatedDocuments .FinancialReport .ReportFile:before  {
    padding-right: 7px;
}
.upcomingEvents {
    margin-bottom: 30px;
}
.upcomingEvents .ModuleYearNavContainer {
    display: none;
}
@media (max-width: 768px) {
    .LatestNewsLanding .ModuleItemRow, .ModuleEvent .ModuleItemRow, .ModulePressRelease .ModuleItemRow {
        border: medium none;
        padding-left: 0;
        margin-bottom: 0;
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .LatestNewsLanding .ModuleItemRow:hover, .ModuleEvent .ModuleItemRow:hover, .ModulePressRelease .ModuleItemRow:hover {
        border: medium none;
    }
    .LatestNewsLanding .ModuleHeadlineLink, .ModulePressRelease .ModuleHeadlineLink {
        font-size: 18px;
    }
}
/* press release pages */
.ModulePressRelease .ModuleYearNavContainerInner {
    padding-bottom: 10px;
    padding-left: 30px;
}
.ModulePressRelease .ModuleYearLink.selected, .RegulatoryFilingContainer .ModuleYearLink.selected {
    color: #c52030;
}
.ModulePressReleaseDetails .ModuleTitle.ModuleDetailHeadline {
    border: medium none;
}
.ModulePressReleaseDetails table td p {
    margin-bottom: 0;
    margin-top: 0;
}
.back-link {
    display: block;
    padding-bottom: 20px;
    padding-top: 10px;
}
.back-link:before {
    content: "\e64c";
    font-family: "Q4-Default-Icons";
    font-size: 10px;
    padding-right: 10px;
}
@media (max-width: 1024px) {
    .table-responsive {
      overflow-x: scroll;
  }
}
@media (max-width: 768px) {
    .ModulePressRelease .ModuleYearNavContainerInner, .ModuleEvent .ModuleYearNavContainer {
        padding-left: 0;
    }
}
/*governance */
.ModuleContainer.ModuleListContainer.ModuleDownloadListWithTags.CommitteeCharters {
    padding-bottom: 30px;
}
.ModuleDownloadListWithTags .ModuleIconImage {
    display: none;
}
.ModuleDownloadListWithTags .ModuleIcon {
    cursor: pointer;
}
.ModuleDownloadListWithTags .ModuleIcon:after {
    color: #dd2a2a;
    content: "\e62a";
    display: inline-block;
    float: right;
    font-family: "Q4-Default-Icons";
    font-size: 26px;
}
.ModuleDownloadListWithTags .ModuleHeader {
    display: none;
}
.ModuleDownloadListWithTags .ModuleItemRow {
    clear: both;
    line-height: 26px;
    margin-bottom: 10px;
}
.ModuleDownloadListWithTags .ModuleFileSizeText {
    display: none;
}
@media (max-width: 768px) {
    .ModuleDownloadListWithTags .ModuleHeadlineLink {
      display: inline-block;
      width: 90%;
  }
}
/* persons and faq */
.commaName {
    display: none;
}
.commaSuffix {
    display: none;
}
.PersonComma.PersonTitleComma {
    display: none;
}
.PersonTitle {
    color: #8e9193;
    display: block;
    font-family: "proxima_novasemibold";
    font-size: 15px;
}
.PersonContainer, .FaqItem {
    border: 2px solid #e3e3e3;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
}
.PersonContainer:hover, .FaqItem:hover {
    border: 2px solid #eb9ba2;
} 
.PersonContainer h3, .FaqItem h3 {
    cursor: pointer;
    position: relative;
}
.PersonContainer h3:after, .FaqDetailList h3:after {
    content: "\e650";
    font-family: "Q4-Default-Icons";
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
}
.PersonContainer h3.active:after, .FaqDetailList h3.active:after {
    content: "\e64a";
    font-family: "Q4-Default-Icons";
}
.PersonDetailsContainer, .FaqAnswer {
    display: none;
}
.PersonDetailsContainer, .FaqAnswer {
    padding-bottom: 1px;
}
.FaqAnswer > p {
    margin: 0;
}
.PersonContainer h3, .FaqDetailList h3 {
    cursor: pointer;
    font-family: "proxima_novaregular";
    font-size: 19px;
    position: relative;
}
.PersonPhoto {
    float: left;
    padding-right: 20px;
}
@media (max-width: 480px) {
      .PersonPhoto {
          float: none;
      }
}
.PersonDescription {
    padding-bottom: 15px;
}
.PersonDescription span p {
    margin-top: 0;
}
.PersonContainer h3.active, .FaqDetailList h3.active {
    color: #303130;
}
.FaqQuestionList {
    display: none;
}
.BackToTopLink {
    display: none;
}
.FaqItem > p {
    display: none;
}
/* committee composition */
.CustomTable {
    border-collapse: collapse;
    font-family: "proxima_novaregular";
    margin-bottom: 15px;
}
.CustomTable th {
    border: 1px solid #e3e3e3;
    padding: 10px;
    width: 25%;
}
.CustomTable td {
    border: 1px solid #e3e3e3;
    padding: 10px;
    text-align: center;
}
.CustomTable td i {
    font-size: 20px;
}
.q4-icon-member.committee-member {
    color: #ed9f01;
}
.q4-icon-member.committee-chair {
    color: #cc2333;
}
.committee-composition div p {
    display: inline-block;
    margin-right: 20px;
}
.committee-composition div p span {
    display: inline-block;
    padding-right: 5px;
    vertical-align: middle;
}
.inside-directors {
    margin-top: 15px;
}
.committee-composition .inside-directors > p {
    display: block;
}
.CommitteeMemberships {
    display: none;
}
.CommitteeMembershipsContainer .Level1 > li {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 5px;
}
.CommitteeMembershipsContainer .Level1 span {
    cursor: pointer;
    display: block;
    padding-bottom: 5px;
    padding-top: 5px;
}
.CommitteeMembershipsContainer .Level1 span:after {
    content: "\e64a";
    float: right;
    font-family: "Q4-Default-Icons";
    font-size: 14px;
    line-height: 20px;
}
.CommitteeMembershipsContainer .Level1 span.active:after {
    content: "\e650";
}
.CommitteeMembershipsContainer .Level2 {
    display: none;
}
.CommitteeMembershipsContainer .Level2 span {
    display: inline-block;
    font-size: 15px;
}
.CommitteeMembershipsContainer .Level1 .Level2 span:after {
    content: "";
}
.CommitteeMemberships .Type {
    float: right;
}
.CommitteeMemberships .Legend {
    margin-top: 10px;
}
.CommitteeMemberships .Legend1, .Legend2, .Legend3 {
    padding: 5px;
}
.CommitteeMemberships .LegendImg {
    float: right;
}
@media (max-width: 680px) {
    .CommitteeMemberships {
        display: block;
    }
    .committee-composition {
        display: none;
    }
}
@media (max-width: 480px) {
    .committee-composition div p {
        display: block;
        margin-right: 0;
    }
    .CustomTable.committee {
        display: none;
    }
}
/* form */
.FormBuilterContainer .Label {
    display: inline-block;
    margin-bottom: 5px;
}
.FormBuilterContainer .RedStar {
    color: #c52030;
    padding-left: 5px;
}
.FormBuilterContainer .FormTextBox {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    padding: 5px;
    width: 300px;
}
.FormBuilterContainer textarea {
    display: block;
    height: 250px;
    width: 100%;
}
.ErrorMessage {
    color: #c52030;
}
.CaptchaContainer table tr td span {
    color: #c52030;
    padding-left: 5px;
}
.MessageSent {
    color: #ed9f01;
}
/* email */
.ErrorContainer {
    color: #c52030;
    padding-bottom: 5px;
}
.RequiredField {
    color: #c52030;
    padding-left: 3px;
}
.MailingListTable, .MailingListUnsubscribeTable {
    width: 100%;
}
.MailingListCol1 {
    display: block;
}
.MailingListCol2 {
    display: block;
    width: 100% !important;
}
.MailingListCol2 > input {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    font-size: 15px;
    margin-bottom: 15px;
    padding: 5px;
    width: 300px !important;
}
textarea {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    font-size: 15px;
    padding: 5px;
}
.NoBr {
    display: none;
}
.Button.ActionButton, .SubmitButton {
    background-color: #1e99d5;
    border: medium none;
    border-radius: 5px;
    box-shadow: 0 2px 0 0 #000;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px 20px;
}
.media-email .Button.ActionButton {
    margin-bottom: 0px;
}
.UnsubscribeTopText {
    margin-top: 20px;
}
.unsubscribeLink {
    font-size: 12px;
}
.email-alerts .unsubscribeLink {
    display:  none;
}
.HtmlTextContainer.rss-feeds {
    margin-top: 25px;
}
.rssIcos i {
    color: #ed9f01;
}
.EditSubscriberConfirmation {
    padding-bottom: 20px;
}
@media (max-width: 480px) {
    .MailingListCol1 {
        width: 100%;
    }
    .MailingListCol2 {
        width: 100%;
    }
    .MailingListCol2 > input {
        width: 270px !important;
    }
}
/* contact */
.CaptchaContainer input {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    font-size: 15px;
    padding: 5px;
}
/* sec filings */
.FormGroupsContainer {
    text-align: right;
}
.FormGroupsContainer > select {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    padding: 5px;
}
.FormGroupsContainer > select {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    padding: 5px;
    width: 220px !important;
}
.RegulatoryFilingContainer .ModuleHeader {
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 25px;
    width: 100%;
}
.ModuleHeader span {
    display: inline-block;
}
.Date {
    padding-left: 7px;
    width: 15%;
}
.Filing {
    width: 13%;
}
.Description {
    width: 50%;
}
.Download {
    width: 17%;
}
.RegulatoryFilingContainer .YearNavContainer {
    margin-top: -28px;
}
.RegulatoryFilingContainer .ModuleItemRow {
    border: 2px solid #e3e3e3;
    border-radius: 5px;
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
}
.RegulatoryFilingContainer .ModuleItemRow:hover {
    border: 2px solid #eb9ca3;
}
.ItemDate {
    display: inline-block;
    width: 15%;
    padding-left: 5px;
}
.ItemHref {
    display: inline-block;
    padding-left: 20px;
    width: 13%;
    color: #1e99d5;
}
.ItemDescription {
    display: inline-block;
    width: 50%;
}
.Icons {
    display: inline-block;
    width: 20%;
}
.IconLink {
    display: inline;
}
.Icons li a {
    display: inline-block;
    font-size: 25px;
    line-height: 25px;
}
.IconLink.PdfIcon a {
    color: #dd2a2a;
}
.IconLink.WordIcon a {
    color: #64c5d5;
}
.IconLink.ExcelIcon a {
    color: #4fb125;
}
.IconLink.XBRLIcon a {
    color: #915aac;
}
.IconLink.XBRL_HTMLIcon a {
    color: #aa1a1a;
}
.ModuleSECFilingDetails .Icons {
    text-align: left;
}
.ModuleSECFilingDetails .ModuleDate:before {
        content: "Date:";
        padding-right: 5px;
}
.ModuleSECFilingDetails .ModuleForm:before {
        content: "Filing Type:";
        padding-right: 5px;
        color: #303130;
}
.ModuleSECFilingDetails .ModuleFilingDescription:before {
        content: "Filing Description:";
        padding-right: 5px;
}
.ModuleSECFilingDetails .Icons:before {
        content: "Download / View:";
        display: block;
}
@media (max-width: 650px) {
    .ModuleHeader {
      display: none;
    }
    .MiddleColumnContentLarge {
        margin-top: 20px;
    }
    .ModuleItemRow {
        padding-left: 10px;
    }
    .ItemDate {
        display: block;
        padding-left: 0;
        width: 100%;
    }
    .ItemDate:before {
        content: "Date:";
        padding-right: 5px;
    }
    .ItemHref {
        display: block;
        text-align: left;
        width: 100%;
        padding-left: 0;
    }
    .ItemHref:before {
        content: "Filing Type:";
        padding-right: 5px;
        color: #303130;
    }
    .ItemDescription {
        display: block;
        text-align: left;
        width: 100%;
    }    
    .ItemDescription:before {
        content: "Filing Description:";
        padding-right: 5px;
    }
    .Icons:before {
        content: "Download / View:";
        display: block;
    }
    .Icons {
        display: block;
        text-align: left;
        width: 100%;
    }
}
@media (max-width: 480px) {
    .FormGroupsContainer {
        text-align: left;
    }
    .RegulatoryFilingContainer .YearNavContainer {
        margin-top: 20px;
    }
}
/* financial reports */
.AnnualQuarterlyReportText {
    display: none;
}
.FinancialReportContainer table {
    width: 100%;
}
.FinancialReportContainer tr {
    float: left;
    width: 33.3333%;
}
.FinancialReportContainer .LeftPad20 h3, .FinancialReportContainer .YearPanel {
  display: none;
}
.FinancialReportContainer table td.CoverImagePane {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}
.FinancialReportContainer table td.LeftPad20 {
    display: block;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}
.FinancialReportContainer table td.LeftPad20 .ReportLink {
    font-size: 14px;
}
@media (max-width: 640px) {
    .FinancialReportContainer tr {
        float: left;
        width: 50%;
    }
    .AnnualReportPanel {
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .FinancialReportContainer tr {
      float: none;
      width: 100%;
      text-align: center;
    }
}
/* multimedia page + subpages */
.TabsMenu {
    padding-bottom: 20px;
}
.TabsMenu ul li {
    display: inline-block;
}
.TabsMenu ul li a {
    border-left: 2px solid #d6d6d6;
    font-size: 22px;
    padding-left: 20px;
    padding-right: 20px;
}
.TabsMenu ul li.selected > a {
    color: #c51f30;
}
.TabsMenu ul li:first-child a {
    border-left: medium none;
    padding-left: 0;
}
.GrubHubProducts .ModuleItemRow, .GrubHubExecutives .ModuleItemRow, .LogosDownload .ModuleItemRow, .research-download .ModuleItemRow {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: top;
    width: 32.333%;
}
.research-download .ModuleThumbnail {
    border-top: 2px solid #000;
    display: block;
    padding-top: 5px;
    text-align: center;
}
.GrubHubProducts .ModuleHeadlineLink, .GrubHubExecutives .ModuleHeadlineLink, .LogosDownload .ModuleHeadlineLink, .research-download .ModuleHeadlineLink {
    display: block;
    font-size: 15px;
    padding-top: 10px;
}
.GrubHubProducts .ModuleIcon, .GrubHubExecutives .ModuleIcon, .LogosDownload .ModuleIcon, .research-download .ModuleIcon {
    display: none;
}
.research-download .ModuleFileDescriptionText {
    font-size: 15px;
}
.research-download .ModuleFileDescriptionText em {
    font-size: 14px;
}
@media (max-width: 768px) {
        .TabsMenu {
            text-align: center;
        }
}
@media (max-width: 640px) {
        .TabsMenu ul li a {
          padding-left: 10px;
          padding-right: 10px;
          font-size: 18px;
      }
      .GrubHubProducts .ModuleItemRow, .GrubHubExecutives .ModuleItemRow, .LogosDownload .ModuleItemRow, .research-download .ModuleItemRow {
          width: 49%;
      }
}
@media (max-width: 480px) {
      .TabsMenu ul li a {
          background-color: #1997d3;
          border-left: medium none;
          border-radius: 5px;
          color: #fff;
          display: block;
          font-size: 15px;
          padding: 5px;
      }
      .TabsMenu ul li.selected > a {
          background-color: #c51f30;
          border-radius: 5px;
          color: #fff;
          display: block;
          padding: 5px;
      }
      .TabsMenu ul li:first-child a {
          padding-left: 5px;
      }
}
@media (max-width: 380px) {
      .GrubHubProducts, .GrubHubExecutives, .LogosDownload, .research-download {
            text-align: center;
        }
      .GrubHubProducts .ModuleItemRow, .GrubHubExecutives .ModuleItemRow, .LogosDownload .ModuleItemRow, .research-download .ModuleItemRow {
          width: 100%;
      }
}
/*our brands */
.OurBrands a {
  display: inline-block;
  padding: 10px;
}
.OurBrands a img {
  width: 100%
}
/* footer  */
.scrollup {
    background-color: #b3b3b3;
    border-radius: 5px;
    bottom: 50px;
    box-shadow: 1px 3px 5px #000000 inset;
    color: #fff;
    cursor: pointer;
    display: none;
    font-family: "FontAwesome";
    font-size: 14px;
    opacity: 0.3;
    padding: 10px 15px;
    position: fixed;
    right: 100px;
    transition: all 1s ease 0s;
    z-index: 100;
}
.scrollup:hover {
  color: #323232;
}
@media (max-width: 768px) {
    .scrollup {
        right: 30px;
    }
}
.PaneFooter {
    background-color: #3232aa;
}
.section-footer {
    padding: 70px 0 20px;
}
.s-container, .s-container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}
.s-container {
    max-width: 1340px;
    width: 100%;
    position: relative;
}
.s-row {
    clear: both;
}
.s-col-xs-1 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 8.33333%;
}
.s-col-xs-2 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 16.6667%;
}
.s-col-xs-3 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 25%;
}
.s-col-xs-4 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 33.3333%;
}
.s-col-xs-5 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 41.6667%;
}
.s-col-xs-6 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 50%;
}
.s-col-xs-7 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 58.3333%;
}
.s-col-xs-8 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 66.6667%;
}
.s-col-xs-9 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 75%;
}
.s-col-xs-10 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 83.3333%;
}
.s-col-xs-12 {
    float: left;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 100%;
}
.s-col-xs-offset-1 {
    margin-left: 8.33333%;
}
.s-col-xs-offset-2 {
    margin-left: 16.6667%;
}
.s-col-lg-1, .s-col-lg-10, .s-col-lg-11, .s-col-lg-12, .s-col-lg-2, .s-col-lg-3, .s-col-lg-4, .s-col-lg-5, .s-col-lg-6, .s-col-lg-7, .s-col-lg-8, .s-col-lg-9, .s-col-md-1, .s-col-md-10, .s-col-md-11, .s-col-md-12, .s-col-md-2, .s-col-md-3, .s-col-md-4, .s-col-md-5, .s-col-md-6, .s-col-md-7, .s-col-md-8, .s-col-md-9, .s-col-sm-1, .s-col-sm-10, .s-col-sm-12, .s-col-sm-2, .s-col-sm-3, .s-col-sm-4, .s-col-sm-5, .s-col-sm-6, .s-col-sm-7, .s-col-sm-8, .s-col-sm-9 {
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}
@media (max-width: 768px) {
    .section-footer-item.s-col-xs-12.s-col-sm-4, .s-col-xs-12.s-col-md-9 {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (min-width: 768px) {
    .s-col-sm-1 {
        float: left;
        width: 8.33333%;
    }
    .s-col-sm-2 {
        float: left;
        width: 16.6667%;
    }
    .s-col-sm-3 {
        float: left;
        width: 25%;
    }
    .s-col-sm-4 {
        float: left;
        width: 33.3333%;
    }
    .s-col-sm-5 {
        float: left;
        width: 41.6667%;
    }
    .s-col-sm-6 {
        float: left;
        width: 50%;
    }
    .s-col-sm-7 {
        float: left;
        width: 58.3333%;
    }
    .s-col-sm-8 {
        float: left;
        width: 66.6667%;
    }
    .s-col-sm-9 {
        float: left;
        width: 75%;
    }
    .s-col-sm-10 {
        float: left;
        width: 83.3333%;
    }
    .s-col-sm-12 {
        float: left;
        width: 100%;
    }
    .s-col-sm-offset-1 {
        margin-left: 8.33333%;
    }
    .s-col-sm-offset-2 {
        margin-left: 16.6667%;
    }
    .s-col-sm-offset-3 {
        margin-left: 25%;
    }
    .s-col-sm-offset-4 {
        margin-left: 33.3333%;
    }
    .s-col-sm-offset-5 {
        margin-left: 41.6667%;
    }
    .s-col-sm-offset-6 {
        margin-left: 50%;
    }
}



@media (min-width: 992px) {
    .s-col-md-1 {
        float: left;
        width: 8.33333%;
    }
    .s-col-md-2 {
        float: left;
        width: 16.6667%;
    }
    .s-col-md-3 {
        float: left;
        width: 22%;
    }
    .s-col-md-4 {
        float: left;
        width: 33.3333%;
    }
    .s-col-md-5 {
        float: left;
        width: 41.6667%;
    }
    .s-col-md-6 {
        float: left;
        width: 50%;
    }
    .s-col-md-7 {
        float: left;
        width: 58.3333%;
    }
    .s-col-md-8 {
        float: left;
        width: 66.6667%;
    }
    .s-col-md-9 {
        float: right;
        width: 76%;
        padding-left: 0;
    }
    .s-col-md-10 {
        float: left;
        width: 83.3333%;
    }
    .s-col-md-11 {
        float: left;
        width: 91.6667%;
    }
    .s-col-md-12 {
        float: left;
        width: 100%;
    }
    .s-col-md-offset-1 {
        margin-left: 8.33333%;
    }
    .s-col-md-offset-2 {
        margin-left: 16.6667%;
    }
    .s-col-md-offset-3 {
        margin-left: 25%;
    }
    .s-col-md-offset-4 {
        margin-left: 33.3333%;
    }
    .s-col-md-offset-8 {
        margin-left: 66.6667%;
    }
    .s-col-md-offset-9 {
        margin-left: 75%;
    }
}

@media (min-width: 1200px) {
    .s-col-lg-1 {
        float: left;
        width: 8.33333%;
    }
    .s-col-lg-2 {
        float: left;
        width: 16.6667%;
    }
    .s-col-lg-3 {
        float: left;
        width: 25%;
    }
    .s-col-lg-4 {
        float: left;
        width: 33.3333%;
    }
    .s-col-lg-5 {
        float: left;
        width: 41.6667%;
    }
    .s-col-lg-6 {
        float: left;
        width: 50%;
    }
    .s-col-lg-7 {
        float: left;
        width: 58.3333%;
    }
    .s-col-lg-8 {
        float: left;
        width: 66.6667%;
    }
    .s-col-lg-9 {
        float: left;
        width: 75%;
    }
    .s-col-lg-10 {
        float: left;
        width: 83.3333%;
    }
    .s-col-lg-11 {
        float: left;
        width: 91.6667%;
    }
    .s-col-lg-12 {
        float: left;
        width: 100%;
    }
    .s-col-lg-offset-2 {
        margin-left: 16.6667%;
    }
}
.s-container-xs-height {
    display: table;
    padding-left: 0;
    padding-right: 0;
}
.s-row-xs-height {
    display: table-row;
}
.s-col-xs-height {
    display: table-cell;
    float: none;
}
@media (min-width: 768px) {
    .s-container-sm-height {
        display: table;
        padding-left: 0;
        padding-right: 0;
    }
    .s-row-sm-height {
        display: table-row;
    }
    .s-col-sm-height {
        display: table-cell;
        float: none;
    }
}
@media (min-width: 992px) {
    .s-container-md-height {
        display: table;
        padding-left: 0;
        padding-right: 0;
    }
    .s-row-md-height {
        display: table-row;
    }
    .s-col-md-height {
        display: table-cell;
        float: none;
    }
}
@media (min-width: 1200px) {
    .s-container-lg-height {
        display: table;
        padding-left: 0;
        padding-right: 0;
    }
    .s-row-lg-height {
        display: table-row;
    }
    .s-col-lg-height {
        display: table-cell;
        float: none;
    }
}
.s-col-top {
    vertical-align: top;
}
.s-col-middle {
    vertical-align: middle;
}
.s-col-bottom {
    vertical-align: bottom;
}
.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .s-img-responsive, .thumbnail a > img, .thumbnail > img {
    border: medium none;
    width: 100%;
}
.s-pull-left {
    float: left !important;
}
.s-pull-right {
    float: right !important;
}
@media (min-width: 768px) {
    .s-pull-right-sm {
        float: right !important;
    }
}
.s-col-xs-no-gutter-8 {
    float: left;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    width: 66.6667%;
}
.s-col-lg-no-gutter-10, .s-col-lg-no-gutter-2, .s-col-md-no-gutter-3, .s-col-sm-no-gutter-3, .s-col-sm-no-gutter-8, .s-col-sm-no-gutter-9 {
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}
@media (min-width: 768px) {
    .s-col-sm-no-gutter-8 {
        float: left;
        width: 66.6667%;
    }
    .s-col-sm-no-gutter-3 {
        float: left;
        width: 25%;
    }
    .s-col-sm-no-gutter-9 {
        float: left;
        width: 75%;
    }
    .s-col-md-no-gutter-3 {
        float: left;
        width: 25%;
    }
}

@media (min-width: 1200px) {
    .s-col-lg-no-gutter-2 {
        float: left;
        width: 16.6667%;
    }
    .s-col-lg-no-gutter-10 {
        float: left;
        width: 83.3333%;
    }
}

@media only screen and (max-width: 767px) {
    .section-footer {
        padding: 40px 0;
        position: relative;
        z-index: 2;
    }
}
@media (min-width: 768px) {
    .section-footer .section-footer-item {
        margin-bottom: 50px;
    }
}
.section-footer .section-footer-item input[type="checkbox"] {
    display: none;
}
.section-footer .section-footer-item label {
    color: #fff;
    display: block;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-family: proxima_novabold, sans-serif;
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item label {
        border-top: 1px solid #6060b3;
        padding: 20px 0;
        text-transform: capitalize;
        cursor: pointer;
    }
    .section-footer .section-footer-item #section1 + label {
        border-top: none;
    }
}
.section-footer .section-footer-item label:before {
    display: none;
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item label:before {
        color: #fff;
        content: "\e64a";
        display: block;
        float: right;
        font-family: "Q4-Default-Icons";
        font-size: 14px;
    }
}
.section-footer .section-footer-item .section-footer-item-list {
    clear: both;
    max-height: 0;
    overflow: hidden;
}
@media (min-width: 768px) {
    .section-footer .section-footer-item .section-footer-item-list {
        overflow: visible;
    }
}
.section-footer .section-footer-item .section-footer-item-list > img {
    width: 100%;
}
@media only screen and (min-width: 767px) {
    .section-footer .section-footer-item .section-footer-item-list {
        max-height: none;
    }
}
.section-footer .section-footer-item .section-footer-item-list > div {
    float: left;
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item .section-footer-item-list > div {
        padding-bottom: 20px;
    }
}
.section-footer .section-footer-item .section-footer-item-list > div > a {
    font-family: "proxima_novabold", sans-serif;
}
.section-footer .section-footer-item .section-footer-item-list > div > a:after {
    content: "»";
    padding-left: 5px;
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item input[type="checkbox"]:checked ~ label {
        border: medium none;
    }
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item input[type="checkbox"]:checked ~ label:before {
        content: "\e650";
        font-family: "Q4-Default-Icons";
    }
}
.section-footer .section-footer-item input[type="checkbox"]:checked ~ .section-footer-item-list {
    border-bottom: 1px solid #79050f;
    max-height: 999px;
}
.section-footer .section-footer-item .section-footer-item-list.checked {
    max-height: 999px;
}
@media (min-width: 768px) {
    .section-footer .section-footer-item input[type="checkbox"]:checked ~ .section-footer-item-list {
        border: 0 none;
    }
    .section-footer .section-footer-item .section-footer-item-list.checked {
        border: 0 none;
    }
}
.section-footer .section-footer-item a, .section-footer .section-footer-item p {
    color: #fff;
    font: 15px/20px proxima-nova,sans-serif;
}
.section-footer .section-footer-item ul {
    float: left;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item ul {
        margin-bottom: 20px;
    }
}
.section-footer .section-footer-item ul > li {
    padding: 0;
}
.section-footer .section-footer-item ul > li > a {
    color: #fff;
    display: block;
    font: 14px/14px proxima-nova,sans-serif;
    padding: 5px 0;
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item ul > li > a {
        padding: 10px 0;
    }
    .section-footer .s-hidden-xs a.s-link {
        display: none;
    }
}
.section-footer .section-footer-item ul > li > a > img {
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item ul > li > a {
        display: block;
    }
}
.section-footer .section-footer-item ul > li > a:hover {
    text-decoration: none;
}
.section-footer .section-footer-item button, .section-footer .section-footer-item input {
    height: 44px;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .section-footer {
        padding: 0;
    }
}
.section-footer .section-footer-item-legal {
    margin-top: 50px;
    padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item-legal {
        margin-bottom: 20px;
        margin-top: 0;
        padding-top: 20px;
        border-top: 1px solid #6060b3;
    }
}
.section-footer .section-footer-item-legal > .legal-copy, .section-footer .section-footer-item-legal > .legal-links {
    color: #fff;
    font-family: "proxima_novaregular";
    font-size: 14px;
}
.section-footer .section-footer-item-legal > .legal-copy {
    padding-left: 0;
}
.legal-copy.s-col-xs-12.s-col-sm-6 > p {
    margin: 0 0 10.5px;
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item-legal > .legal-copy {
        text-align: center;
    }
}
.section-footer .section-footer-item-legal > .legal-links {
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .section-footer .section-footer-item-legal > .legal-links {
        text-align: center;
    }
    .section-footer .section-footer-item-legal > .legal-links a {
        text-decoration: underline;
        margin-left: 10px;
    }
    .section-footer .section-footer-item-legal > .legal-copy {
        font-size: inherit;
    }
    .legal-copy.s-col-xs-12.s-col-sm-6 > p {
        margin: 0;
        color: #b4b4e0;
    }
}
.section-footer .section-footer-item-legal > .legal-links a {
    color: #fff;
    margin-left: 20px;
    text-transform: capitalize;
}
.section-footer .section-footer-item-legal > .legal-links a:first-child {
    margin-left: 0;
}
.section-footer .section-footer-item-legal > .legal-links a:hover {
    text-decoration: none;
}
.section-footer .s-form-group {
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
}
@media (min-width: 768px) {
    .section-footer .s-form-group {
        margin-bottom: 0;
        padding-left: 15px;
    }
}
.section-footer .s-form-group.ignition-input--email {
    padding-left: 0;
}
.section-footer .s-form-group > .s-form-control {
    border: 0 none;
    box-shadow: 0 2px 0 #3d030d;
}
.section-footer .s-btn-homepage {
    background: #009ade none repeat scroll 0 0;
    border-color: #009ade;
    margin: 0;
}
.section-footer .s-btn-homepage:hover {
    background: #0077ab none repeat scroll 0 0;
    border-color: #0077ab;
}

@media (max-width: 991px) {
    .s-hidden-sm {
        bottom: 200px;
        position: absolute;
        z-index: 200;
    }
}
@media (max-width: 767px) {
    .s-hidden-sm {
        bottom: 0;
        position: relative;
        z-index: 200;
        width: 250px;
    }
}